home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 2 / DATAFILE_PDCD2.iso / utilities2 / desklib / Docs / Blanks / Makefile < prev   
Makefile  |  1993-03-27  |  594b  |  29 lines

  1. # Project:   Empty_Make_File
  2.  
  3. #
  4. #  To use this makefile, simply fill in the 'Files' list, and change the
  5. #  two occurences below of the word 'Target' with the name of the file you
  6. #  wish to create out the other end.
  7. #
  8.  
  9. .SUFFIXES:   .c .o
  10. CC           = cc
  11. CCflags      = -c -throwback -IDeskLib:,C:
  12. Linkflags    = -o $@
  13. LibFileflags = -c -o $@
  14.  
  15.  
  16. Files =  o.thefile o.otherfile
  17.  
  18. # Final targets:
  19. all: Target
  20.  
  21. Target:  $(Files)
  22.          Create $@ 1
  23. #        LibFile $(LibFileFlags) @.o.*
  24.          |=== Icon SubLibrary up to date
  25.  
  26. .c.o:;  $(CC) $(CCflags) $< -o $@
  27.  
  28. # User-editable dependencies:
  29.