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

  1. #
  2. # example programs Imakefile
  3. #
  4. #
  5.  
  6. #define PassCDebugFlags 'CDEBUGFLAGS=$(CDEBUGFLAGS)'
  7.  
  8. SRCS1=    xbitmap1.c BitmapEdit.c
  9. OBJS1=    xbitmap1.o BitmapEdit.o 
  10.  
  11. SRCS2=    xbitmap2.c BitmapEdit.c
  12. OBJS2=    xbitmap2.o BitmapEdit.o
  13.  
  14. SRCS3=    xbitmap3.c BitmapEdit.c
  15. OBJS3=    xbitmap3.o BitmapEdit.o
  16.  
  17. SRCS4=    xbitmap4.c BitmapEdit.c
  18. OBJS4=    xbitmap4.o BitmapEdit.o
  19.  
  20. SRCS5=    xbitmap5.c BitmapEdit.c
  21. OBJS5=    xbitmap5.o BitmapEdit.o
  22.  
  23. PROGRAMS = xbitmap1 xbitmap2 xbitmap3 xbitmap4 xbitmap5 
  24. all::  $(PROGRAMS)
  25.  
  26. LOCAL_LIBRARIES = -lXm $(XTOOLLIB) $(XLIB)
  27.  
  28. NormalProgramTarget(xbitmap1,$(OBJS1),,$(LOCAL_LIBRARIES),)
  29.  
  30. NormalProgramTarget(xbitmap2,$(OBJS2),,$(LOCAL_LIBRARIES),)
  31.  
  32. NormalProgramTarget(xbitmap3,$(OBJS3),,$(LOCAL_LIBRARIES),)
  33.  
  34. NormalProgramTarget(xbitmap4,$(OBJS4),,$(LOCAL_LIBRARIES),)
  35.  
  36. NormalProgramTarget(xbitmap5,$(OBJS5),,$(LOCAL_LIBRARIES),)
  37.  
  38.