home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / gnu / djgpp / contrib / tasks / test / makefile next >
Encoding:
Makefile  |  1993-12-01  |  136 b   |  9 lines

  1. CFLAGS = -g -O2 -I../inc
  2.  
  3. test : test.o ../lib/libtask.a
  4.     gcc $(CFLAGS) $^ -lpc -o test
  5.  
  6. test.o : test.cc
  7.     gcc $(CFLAGS) -c $<
  8.  
  9.