home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 378.lha / MemEater_v1.0 / Makefile < prev    next >
Makefile  |  1990-05-02  |  706b  |  24 lines

  1. # Aztec C makefile for MemEater.
  2. #
  3. # Substitute your own precompiled includes (or none) in the PRECOMP definition.
  4. #
  5. PRECOMP = -hi include:includes.pre
  6.  
  7. CFLAGS = -pa -pc -bs $(PRECOMP)
  8. #
  9.  
  10. # The object file, detach.o32, was obtained by compiling the main.c file in the
  11. # Aztec crt_src collection with -DDETACH. It resides in the normal library path.
  12.  
  13. MemEater: MemEater.o MRTimer.o
  14.     ln -o MemEater MemEater.o MRTimer.o detach.o32 -lc
  15.  
  16. MemEaterD: MemEater.o MRTimer.o
  17.     ln -w -g -o MemEaterD MemEater.o MRTimer.o -lc
  18.  
  19. MemEater.o: MemEater.c MemEater-pw.h
  20.  
  21. zoo: MemEater
  22.     zoo a MemEater MemEater.info MemEater.doc MemEater MemEater.c \
  23.           MemEater.pw MemEater-pw.h MRTimer.h MRTimer.c Makefile
  24.