home *** CD-ROM | disk | FTP | other *** search
/ MACD 4 / MACD4.iso / Emulatory / SPConv / Src / MAKEFILE next >
Encoding:
Text File  |  1978-03-06  |  1.2 KB  |  53 lines

  1. #
  2. # Makefile for SPCONV - SPECTRUM SNAPSHOT CONVERTER 1.09
  3. #
  4. # H. de Groot
  5. #
  6.  
  7. LIB=c:\tc\lib\cs
  8. START=c:\tc\lib\c0s
  9.  
  10. .SILENT
  11.  
  12. .c.obj:
  13.   tcc -ms -c -d -G -O $<
  14.  
  15. all:    spconv.exe spconv.doc
  16.  
  17. spconv.exe: spconv.obj
  18.   tlink $(START) spconv.obj,spconv.exe,NUL,$(LIB)
  19.  
  20. spconv.obj:    spconv.c    spconv.h
  21.  
  22. clean:
  23.     del *.obj
  24.     del *.exe
  25.     del *.sig
  26.  
  27. sign: spconv.sig
  28.     echo Executable signed with spconv.sig
  29.  
  30. spconv.sig: spconv.exe
  31.     del spconv.sig
  32.     c:\pgp\pgp -sb spconv.exe -u "Henk de Groot"
  33.  
  34. spconv.doc: spconv.1
  35.     del spconv.doc
  36.     nroff -fn -man spconv.1 > spconv.doc
  37.  
  38. arj:    spconv.arj
  39.     echo Spconv.arj up to date
  40.  
  41. zip:    spconv.zip
  42.     echo Spconv.zip up to date
  43.  
  44. spconv.arj: spconv.exe spconv.c spconv.h spconv.sig spconv.doc spconv.1 \
  45.         makefile makefile.unx history.doc author.doc
  46.     arj a spconv.arj spconv.exe spconv.c spconv.h spconv.sig spconv.doc \
  47.         spconv.1 makefile makefile.unx history.doc author.doc
  48.  
  49. spconv.zip: spconv.exe spconv.c spconv.h spconv.sig spconv.doc spconv.1 \
  50.         makefile makefile.unx history.doc author.doc
  51.     pkzip spconv.zip spconv.exe spconv.c spconv.h spconv.sig spconv.doc \
  52.         spconv.1 makefile makefile.unx history.doc author.doc
  53.