source: git/ntl/Makefile @ 6ce030f

spielwiese
Last change on this file since 6ce030f was 2f19b0, checked in by Hans Schoenemann <hannes@…>, 13 years ago
install target: install-libsingular git-svn-id: file:///usr/local/Singular/svn/trunk@14221 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 638 bytes
Line 
1# $Id$
2#################################################
3SHELL           = /bin/sh
4
5##
6## Primary targets
7##
8
9all: setup1 setup2 setup3 setup4
10        cd src;make ntl.a || exit 1;cd ..
11
12setup1:
13        (cd src;make setup1 || exit 1;cd ..; touch setup1)
14
15setup2: setup1
16        (cd src;make setup2 || exit 1;cd ..; touch setup2)
17
18setup3: setup2
19        (cd src;make setup3 || exit 1;cd ..; touch setup3)
20
21setup4: setup3
22        (cd src;make setup4 || exit 1;cd ..; touch setup4)
23
24install install-libsingular:    all
25        (cd src;make install || exit 1;cd ..)
26
27install_all: install
28
29clean:
30        cd src;make clean;cd ..
31        -rm setup1 setup2 setup3 setup4
32depend:
33        @echo "No make depend available!"
Note: See TracBrowser for help on using the repository browser.