home *** CD-ROM | disk | FTP | other *** search
/ Education Sampler 1992 [NeXTSTEP] / Education_1992_Sampler.iso / Programming / Classes / ObjDB / Makefile < prev    next >
Encoding:
Makefile  |  1992-07-31  |  856 b   |  43 lines

  1. #
  2. # This file adapted from NeXT Makefile for Non IB makes
  3. #
  4. # Put all of your customizations in files called Makefile.preamble
  5. # and Makefile.postamble (both optional), and Makefile will include them.
  6. #
  7.  
  8. NAME = ObjDB
  9.  
  10. CLASSES =
  11. MFILES = Test.m ObjDB.m
  12. CFILES = 
  13. OTHERSRCS = ObjDB.h
  14. TEST_OUT = 
  15. DATA_FILES = TestObj.dfd test.input $(TEST_OUT) $(MAKEFILEDIR)/app.make \
  16.              $(MAKEFILEDIR)/common.make README
  17. HELP_FILES =
  18. OTHER_GARBAGE = 
  19. SOURCEMODE = 444
  20.  
  21. CFLAGS = -O -g -Wall
  22. LIBS =   -lNeXT_s -lsys_s
  23. DEBUG_LIBS = -lMallocDebug $(LIBS)
  24. PROF_LIBS = -lNeXT_p -lsys_p
  25.  
  26. MAKEFILEDIR = .
  27. TARFILEDIR = $(HOME)/tarfiles
  28. SRCROOT = src
  29. ICONSECTIONS =
  30. APPWRAPPER = NO
  31. NOMACHO = YES
  32.  
  33. INSTALLDIR = $(HOME)/bin
  34. INSTALLFLAGS = -c -s -m 755
  35.  
  36. -include Makefile.preamble
  37.  
  38. include $(MAKEFILEDIR)/app.make
  39.  
  40. -include Makefile.postamble
  41.  
  42. -include Makefile.dependencies
  43.