home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / m / motifpg2.zip / ch14 / Imakefile next >
Makefile  |  1992-07-03  |  377b  |  23 lines

  1. #
  2. # example programs Imakefile
  3. #
  4. #
  5.  
  6. #define PassCDebugFlags 'CDEBUGFLAGS=$(CDEBUGFLAGS)'
  7.  
  8. SRCS1=    xtwodisp.c 
  9. OBJS1=    xtwodisp.o 
  10.  
  11. SRCS2=    xtwoapp.c
  12. OBJS2=    xtwoapp.o
  13.  
  14. PROGRAMS = xtwodisp xtwoapp
  15.  
  16. all::  $(PROGRAMS)
  17.  
  18. LOCAL_LIBRARIES = -lXm $(XTOOLLIB) $(XLIB)
  19.  
  20. NormalProgramTarget(xtwodisp,$(OBJS1),,$(LOCAL_LIBRARIES),)
  21.  
  22. NormalProgramTarget(xtwoapp,$(OBJS2),,$(LOCAL_LIBRARIES),)
  23.