home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / x / xlibpr3.zip / basicwin / tiles / Imakefile < prev    next >
Makefile  |  1989-11-25  |  366b  |  23 lines

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