home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / amiga / utility / misc / toolmana.lha / ToolManager / Source / WBStartup / DMakefile next >
Encoding:
Makefile  |  1992-09-26  |  515 b   |  24 lines

  1. #
  2. # DMakefile  V2.0
  3. #
  4. # Makefile for ToolManager 2.0 (ToolManager starter)
  5. #
  6. # (c) 1990-92 Stefan Becker
  7. #
  8. IDIR  = //Programmers/include
  9. LDIR  = //Programmers/dlib
  10. ODIR  = //WBStartup
  11. FLAGS = -mRR -proto -ms -I $(IDIR) -L $(LDIR) -L /locale
  12. SRCS  = ToolManager.c
  13. PRGS  = $(SRCS:"*.c":"$(ODIR)/*")
  14.  
  15. all: $(PRGS)
  16.  
  17. $(PRGS) : $(SRCS)
  18.       dcc $(FLAGS) -o %(left) %(right) -ltm -llocale
  19.  
  20. $(PRGS) : $(IDIR)/libraries/toolmanager.h $(IDIR)/clib/toolmanager_protos.h \
  21.           /locale/toolmanager.h
  22.  
  23. $(PRGS) : DMakefile
  24.