home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / progc / aetsk100.arj / MAKEFILE < prev    next >
Text File  |  1991-12-01  |  624b  |  36 lines

  1. #       makefile for libtask.a (Borland make 3.0+)
  2.  
  3. GINC1=../inc
  4. GINC2=../../ae/inc
  5.  
  6. !include "..\..\builtins.mak"
  7.  
  8. all: ..\..\lib\libtask.a
  9.  
  10. O=task.o        \
  11.   semas.o       \
  12.   mailbox.o     \
  13.   pipes.o       \
  14.   sysqvfnc.o    \
  15.   taskmain.o    \
  16.   keybdtsk.o    \
  17.   tskfatal.o
  18.  
  19.  
  20. libtask.a: $(O)
  21.         del libtask.a
  22.         ar rc libtask.a @&&!
  23. $(O)
  24. !
  25.  
  26. ..\..\lib\libtask.a: libtask.a
  27.         copy libtask.a ..\..\lib
  28.         ar s ..\..\lib\libtask.a
  29.  
  30. a.out: test.o ..\..\lib\libtask.a
  31.         gcc test.o -ltask -lae -lpc
  32.  
  33. test.exe: a.out
  34.         copy a.out test
  35.         aout2exe test
  36.