home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d6xx / d663 / debugutils.lha / DebugUtils / Make.Manx < prev    next >
Encoding:
Text File  |  1992-05-21  |  413 b   |  26 lines

  1. #  Makefile for compiling and making the trace.lib under Manx.
  2.  
  3. CC = cc
  4. LD = ln
  5.  
  6. CFLAGS       =  +L
  7. DBFLAGS        = -dDEBUG
  8.  
  9. LIBS         =  -lm32 -lc32
  10. LIB            =    trace.lib
  11. TEST            =    test
  12.  
  13. all:     $(LIB) $(TEST)
  14.  
  15. trace.lib: trace.o
  16.     lb trace.lib  trace.o
  17.  
  18. trace.o: trace.c debug.h trace.h
  19.     $(CC) $(CFLAGS) trace.c
  20.  
  21. test: test.o trace.lib
  22.     $(LD) test.o -o test $(LIB) $(LIBS)
  23.  
  24. test.o: test.c
  25.     $(CC) $(CFLAGS) $(DBFLAGS) test.c
  26.