home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Amiga 13 / MA_Cover_13.bin / source / c / stefanb_src / old_projects / umsuucp / src / dmakefile next >
Encoding:
Makefile  |  1994-05-17  |  374 b   |  22 lines

  1. #
  2. # DMakefile for the UMS_UUCP package
  3. #
  4. TMPDIR = t:umsuucp
  5.  
  6. DIRS = AUUCPLib debug uuxqt ums2uucp
  7. TAGS = $(DIRS:"*":"*/compiled")
  8.  
  9. all : $(TMPDIR) $(TAGS)
  10.  
  11. $(TAGS) : $(DIRS)
  12.          @cd %(right)
  13.          @echo "making all in %(right)..."
  14.          @dmake -q
  15.          @cd /
  16.  
  17. $(TMPDIR) : $(TMPDIR)
  18.          -makedir %(left)
  19.  
  20. clean :
  21.          -delete $(TMPDIR) all quiet force
  22.