home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Misc / tollmanager3.lha / toolmanager3 / ToolManagerDev.lha / ToolManager / Developer / c / examples / DMakefile next >
Encoding:
Makefile  |  1997-02-22  |  678 b   |  24 lines

  1. #
  2. # DMakefile  V3.0
  3. #
  4. # Makefile for ToolManager 3.0 (Examples)
  5. #
  6. # Copyright (C) 1990-97 Stefan Becker
  7. #
  8. # This source code is for educational purposes only. You may study it
  9. # and copy ideas or algorithms from it for your own projects. It is
  10. # not allowed to use any of the source codes (in full or in parts)
  11. # in other programs. Especially it is not allowed to create variants
  12. # of ToolManager or ToolManager-like programs from this source code.
  13. #
  14. DEVDIR = /
  15. IDIRS  = -I$(DEVDIR)include
  16. LDIRS  = -L$(DEVDIR)dlib
  17. LIBS   = -ltoolmanager
  18. FLAGS  = -3.1 -mRR -mi -ms -proto
  19.  
  20. all: ShowImage
  21.  
  22. ShowImage : ShowImage.c
  23.       dcc $(FLAGS) $(IDIRS) -o %(left) %(right) $(LDIRS) $(LIBS)
  24.