home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / d / dir_nm20.zip / Dir_NM_2.0 / makefile < prev    next >
Makefile  |  1992-07-16  |  728b  |  30 lines

  1. # Invoke with "make nm"
  2. # Test with "touch FILENAME"  "make -n", Explanation =  "make -d"
  3.  
  4. CFLAGS= -g # -O
  5. # NM 1.0
  6. NMINCLUDES = NM.h
  7. NMFILES = NM-Start.c NM-Table.c NM-Menu.c NM-Tool.c NM-Data.c NM-Atom.c NM-Base.c NM-Speak.c NM-Dance.c NM-Input.c NM-Output.c NM-Sound.c NM-Timbre.c NM-Button.c
  8. NMOBJS = NM-Start.o NM-Table.o NM-Menu.o NM-Tool.o NM-Data.o NM-Atom.o NM-Base.o NM-Speak.o NM-Dance.o NM-Input.o NM-Output.o NM-Sound.o NM-Timbre.o NM-Button.o
  9.  
  10. CLIBS=-lm
  11. XLIBS=-lX11
  12.  
  13. # Device Transform Utility
  14.  
  15. TRANSFORMOBJS: TRANSFORMINCLUDES
  16.  
  17.  
  18. # Text printout and mouse interaction programs
  19.  
  20. # --> Mouse interaction program for NM
  21.  
  22. $(NMOBJS):  $(NMINCLUDES)
  23.  
  24. nm:  $(NMOBJS)
  25.     cc $(CFLAGS)  -o $@  $(NMOBJS) $(XLIBS) $(CLIBS)
  26.  
  27.  
  28.  
  29.  
  30.