home *** CD-ROM | disk | FTP | other *** search
- # makefile for libtask.a (Borland make 3.0+)
-
- GINC1=../inc
- GINC2=../../ae/inc
-
- !include "..\..\builtins.mak"
-
- all: ..\..\lib\libtask.a
-
- O=task.o \
- semas.o \
- mailbox.o \
- pipes.o \
- sysqvfnc.o \
- taskmain.o \
- keybdtsk.o \
- tskfatal.o
-
-
- libtask.a: $(O)
- del libtask.a
- ar rc libtask.a @&&!
- $(O)
- !
-
- ..\..\lib\libtask.a: libtask.a
- copy libtask.a ..\..\lib
- ar s ..\..\lib\libtask.a
-
- a.out: test.o ..\..\lib\libtask.a
- gcc test.o -ltask -lae -lpc
-
- test.exe: a.out
- copy a.out test
- aout2exe test
-