home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / varia / toolmanager / developer / c / examples / dmakefile next >
Makefile  |  1977-12-31  |  678b  |  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.