home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 200-299 / ff216.lzh / C64Emul / src / makefile < prev    next >
Makefile  |  1989-06-02  |  379b  |  25 lines

  1. #
  2. # Aztec Make makefile, for Lattice C V4.0 :-)
  3. #
  4. # Commodore 64 spoof Emulator, April 1988
  5. #
  6.  
  7. OBJS   = main.o commands.o screen.o
  8. #
  9. #
  10. #
  11. .c.o:
  12.     lc -s -v $*.c
  13. #
  14. #
  15. #
  16. all: c64
  17.  
  18. c64: $(OBJS)
  19.     blink from lib:c.o $(OBJS) to C64 sc sd nd map ram:map \
  20.           lib lib:lc.lib lib:amiga.lib
  21.  
  22. main.o:    main.c screen.h commands.h
  23. screen.o: screen.c screen.h
  24. commands.o: commands.c commands.h
  25.