home *** CD-ROM | disk | FTP | other *** search
/ Education Sampler 1992 [NeXTSTEP] / Education_1992_Sampler.iso / Programming / Source / HippoDraw / hippo / make.sgi < prev    next >
Encoding:
Text File  |  1992-04-28  |  710 b   |  33 lines

  1. #
  2. # define macros which work on sgi
  3.  
  4. # sgi make actually cares about SHELL env variable
  5. SHELL = /bin/sh
  6.  
  7. LIB_LIST = hippoX11
  8. DEBUGLIB_LIST = hippoX11.debug
  9. UTIL_LIB=hippoX11
  10.  
  11. # directory in which libraries are built (define it here if different
  12. #  architecture means different directory), eg.
  13. #LIB_DIR = /u/eb/rensing/lib/sgi
  14.  
  15. _CFLAGS = 
  16. CFLAGS = -O $(_CFLAGS)
  17. CFLAGS_DEB = -g -DDEBUG $(_CFLAGS)
  18. CFLAGS_PROF = -pg -DPROFILE$(_CFLAGS)
  19. LDFLAGS = -L$(LIB_DIR) -l$(UTIL_LIB) -lsun -lm
  20.  
  21. # LIBS for making hb2hippo...
  22. # hippo is picked up from LDFLAGS
  23. HB2HADD = -lpacklib
  24.  
  25. # Missing system rules and macros
  26.  
  27. # SGI does not have ranlib, so set to do-nothing command
  28. RANLIB = true
  29. RM = rm
  30. RMFLAGS = -f
  31. MV = mv
  32. CP = cp
  33.