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

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