home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d5xx / d583 / worldtime.lha / WorldTime / makefile < prev    next >
Makefile  |  1992-01-04  |  358b  |  15 lines

  1. #This compiles under Manx Aztec C v5.0d. It looks for a pre-compiled
  2. #include file in the CMD: directory. You will have to have one of these
  3. #or work out the includes yourself.
  4.  
  5. CFLAGS = -sbo -wu -ff -hiCMD:include.dmp
  6. LFLAGS = +q -m
  7.  
  8. OBJS = main.o data.o
  9.  
  10. WorldTime : $(OBJS)
  11.     ln $(LFLAGS) detach.oll -O WorldTime $(OBJS) -Lmf -Lc
  12.  
  13. .c.o:
  14.     cc $(CFLAGS) $*.c
  15.