home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-10-16 | 740 b | 35 lines |
- # Project: Ada examples
-
- Adacomp = adacomp -d -l testlib
- Adabind = adabind -l testlib
- Adaexec = adaexec -l testlib
- CC = cc
-
- all: test_int sieve delay shell hello
- wipe testlib ~cfr
- wipe lis ~cfr
- echo demos complete.
-
- hello:; $(Adacomp) -n hello.ada
- $(Adabind)
- $(Adaexec)
-
- shell:; $(Adacomp) -n io.ada
- $(Adacomp) random_
- $(Adacomp) random
- $(Adacomp) shell_
- $(Adacomp) shelltest
- $(Adabind) -m shell_sort_test
- $(Adaexec) -te -m shell_sort_test <dat.shell
-
- delay:; $(Adacomp) -n -m delay_test -b delay_test
- $(Adaexec) -m delay_test
-
- sieve:; $(Adacomp) -m sieve_pump -b sieve_pump
- - $(Adaexec) -m sieve_pump -p 1 -s 1 -h 8
-
- test_int:; $(CC) -c proc.c
- $(Adacomp) -n -i proc.o -m c_interfaces -b test_int
- $(Adaexec) -m c_interfaces
-
-