home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #12 / Amiga Plus CD - 2002 - No. 12.iso / AmigaOS / Aplus_Dev / AP-Website / download / pgp / pgp5gui-174b.lha / PGP5GUI-Src.lha / PGP5GUI-Src / smakefile < prev   
Encoding:
Makefile  |  1998-05-19  |  847 b   |  42 lines

  1. #
  2. # Makefile for PGP5GUI
  3. #
  4.  
  5. OBJS= PGP5Main.o PGP5GUI.o FileReqPGP5.o \
  6.         SelPGPKeyGUI.o SelPGPKeyMisc.o \
  7.         PGP5Interface.o cbio.o \
  8.         PGPKInterface.o PGPEInterface.o PGPSInterface.o PGPVInterface.o
  9.  
  10. PGP5GUI: precomp.gst $(OBJS)
  11.     slink with PGP5GUI.lnk
  12.  
  13. precomp.gst : precomp.h PGP5GUI.h SelPGPKeyGUI.h
  14.    sc precomp.h mgst precomp.gst noobjname
  15.  
  16. clean:
  17.    -delete \#?.gst \#?.o quiet
  18.  
  19.  
  20. PGP5Main.o: PGP5Main.c precomp.gst
  21.  
  22. PGP5GUI.o: PGP5GUI.c precomp.gst
  23.  
  24. FileReqPGP5.o: FileReqPGP5.c precomp.gst
  25.  
  26. SelPGPKeyGUI.o: SelPGPKeyGUI.c precomp.gst
  27.  
  28. SelPGPKeyMisc.o: SelPGPKeyMisc.c precomp.gst
  29.  
  30. PGP5Interface.o: PGP5Interface.c precomp.gst
  31.  
  32. cbio.o: cbio.c precomp.gst
  33.  
  34. PGPKInterface.o: PGPKInterface.c precomp.gst
  35.  
  36. PGPEInterface.o: PGPEInterface.c precomp.gst
  37.  
  38. PGPSInterface.o: PGPSInterface.c precomp.gst
  39.  
  40. PGPVInterface.o: PGPVInterface.c precomp.gst
  41.  
  42.