home *** CD-ROM | disk | FTP | other *** search
/ The Party 1994: Try This At Home / disk_image.bin / source / mythic / makefile < prev    next >
Makefile  |  1995-03-13  |  930b  |  41 lines

  1. AS    = tasm
  2. CC    = tcc
  3. LD    = tlink
  4.  
  5. INCLUDES = \
  6.   include\bios.inc     \
  7.   include\dos.inc      \
  8.   include\keycodes.inc \
  9.   include\palette.inc  \
  10.   include\pattern.inc  \
  11.   include\request.inc  \
  12.   include\stone.inc    \
  13.   object\heart.inc     \
  14.   object\star.inc      \
  15.   char\big.inc         \
  16.   char\small.inc       \
  17.   char\tiny.inc
  18.  
  19. all: play.exe read.exe write.exe connect.exe
  20.     del *.obj
  21.     del *.map
  22.     del play.inc
  23. play.exe: writer.asm $(INCLUDES)
  24.     $(AS) /d_PLAY writer.asm
  25.     $(LD) writer.obj, play.exe
  26. read.exe: writer.asm $(INCLUDES)
  27.     $(AS) /d_READ writer.asm
  28.     $(LD) writer.obj, read.exe
  29. write.exe: writer.asm $(INCLUDES)
  30.     $(AS) /d_WRITE writer.asm
  31.     $(LD) writer.obj, write.exe
  32. connect.exe: connect.asm include/dos.inc include/bios.inc play.exe
  33.     bin2inc play.exe play.inc
  34.     $(AS) connect.asm
  35.     $(LD) connect.obj
  36. makeinc.exe: makeinc.c
  37.     $(CC) makeinc
  38. clean:
  39.     del *.obj
  40.     del *.map
  41.     del *.exe