home *** CD-ROM | disk | FTP | other *** search
/ OpenStep (Enterprise) / OpenStepENTCD.toast / OEDEV / EODEV.Z / Makefile < prev    next >
Encoding:
Makefile  |  1996-09-09  |  807 b   |  40 lines

  1. #
  2. # makefile for eoexamples
  3. #
  4.  
  5. -include $(NEXT_ROOT)/NextDeveloper/Makefiles/project/platform.make
  6.  
  7. -include Makefile.$(PLATFORM_OS)
  8.  
  9. INSTALL_PROJS=BusinessLogic EOExtensions FlatFileAdaptor
  10. NORMAL_PROJS=Movie Studios Customers Inventory PointOfSale AssociationPalette AssociationsApp ModelerBundle
  11. ALL_PROJS=$(INSTALL_PROJS) $(NORMAL_PROJS)
  12. OTHERSRC=DatabaseSetUp Makefile Makefile.winnt Makefile.nextstep UsingStoredProcedures
  13.  
  14.  
  15. all:
  16.     @for i in $(INSTALL_PROJS) ; \
  17.     do ( cd $$i; $(MAKE) install; ) ; \
  18.     done
  19.     @for i in $(NORMAL_PROJS) ; \
  20.     do ( cd $$i; $(MAKE) ; ) ; \
  21.     done
  22.  
  23. installsrc: $(SRCROOT)
  24.     @for i in $(ALL_PROJS) ; \
  25.     do ( cd $$i; $(MAKE) installsrc SRCROOT=$(SRCROOT)/$$i ; ) ; \
  26.     done
  27.     gnutar cf - $(OTHERSRC) | ( cd $(SRCROOT) ; gnutar xvf - )
  28.  
  29. $(SRCROOT):
  30.     mkdirs $@
  31.  
  32. default: all
  33.  
  34.  
  35.     
  36.     
  37.  
  38.  
  39.  
  40.