home *** CD-ROM | disk | FTP | other *** search
/ No Fragments Archive 12: Textmags & Docs / nf_archive_12.iso / MAGS / SOURCES / ATARI_SRC.ZIP / atari source / HDX_BACK / SHOWFILE / MAKEFILE < prev    next >
Encoding:
Text File  |  2001-02-09  |  835 b   |  42 lines

  1. #
  2. #  Use "make -r" to make this file, or alias as in: 
  3. #                    set in .cmd mk=(make -r $*)
  4. #
  5. .SUFFIXES: .o .s .c
  6. .s.o:
  7.     mac $(MACFLAGS) $*.s
  8. .c.o:
  9.     @echo c68 -c $*.c
  10.     g:\bin\cp68.prg $(CFLAGS) $*.c l:$*.i
  11.     g:\bin\c068.prg l:$*.i l:$*.1 l:$*.2 l:$*.3 -f
  12.     rm l:$*.i
  13.     g:\bin\c168.prg l:$*.1 l:$*.2 l:$*.s
  14.     g:\bin\mac.prg -6 -o $*.o l:$*.s
  15.     rm l:$*.1 l:$*.2 l:$*.s
  16.  
  17. TEMP = l:tmp
  18. LIBS = vdibind aesbind gemlib libf
  19.  
  20. OBJS =    gemstart.o osbind.o mymalloc.o \
  21.         addr.o show.o st.o string.o 
  22. # getln.o toascii.o
  23. show.prg : $(OBJS)
  24.     echo $(OBJS) $(LIBS) >$(TEMP)
  25.     aln -s -o show.prg -c $(TEMP)
  26.  
  27.  
  28. #
  29. #  assembly-language files
  30. #
  31. mymalloc.o     : mymalloc.s
  32. osbind.o     : osbind.s
  33. #
  34. #  C sources
  35. #
  36. addr.o         : addr.c
  37. st.o        : st.c
  38. #toascii.o     : toascii.c
  39. #getln.o     : getln.c
  40. show.o         : show.c
  41. string.o     : string.c
  42.