home *** CD-ROM | disk | FTP | other *** search
/ The AGA Experience 2 / agavol2.iso / software / utilities / comms / metamail-2.3a / elm113diffs.lha / DMakefile next >
Makefile  |  1992-06-14  |  1KB  |  39 lines

  1. # Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)
  2. #
  3. # Permission to use, copy, modify, and distribute this material
  4. # for any purpose and without fee is hereby granted, provided
  5. # that the above copyright notice and this permission notice
  6. # appear in all copies, and that the name of Bellcore not be
  7. # used in advertising or publicity pertaining to this
  8. # material without the specific, prior written permission
  9. # of an authorized representative of Bellcore.  BELLCORE
  10. # MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY
  11. # OF THIS MATERIAL FOR ANY PURPOSE.  IT IS PROVIDED "AS IS",
  12. # WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.
  13. #
  14. CC = dcc
  15. # -gs is probably no longer needed, leave it in to be on the safe side.
  16. #CFLAGS = -gs -ms -I. -ISYS:local/ReqTools/include -ISYS:local/kd_freq/include -DDICE -DKDFREQ
  17. CFLAGS = -gs -ms -I. -ISYS:local/ReqTools/include -DDICE
  18.  
  19. LOCALCFLAGS= $(CFLAGS)
  20.  
  21. #LDLIBS = SYS:local/ReqTools/lib/reqtoolss.lib SYS:local/kd_freq/lib/kd_freq.lib
  22. LDLIBS = SYS:local/ReqTools/lib/reqtoolss.lib
  23.  
  24. SRCS = alias.c winio.c f1.c f2.c f3.c mailer.c getline.c lockfile.c rtsup.c
  25. OBJS = alias.o winio.o f1.o f2.o f3.o mailer.o getline.o lockfile.o rtsup.o
  26. INCL = prefs.h protos.h
  27. APPS = Elm
  28.  
  29. all: $(APPS)
  30.  
  31. Elm: $(OBJS)
  32.         $(CC) $(LOCALCFLAGS) -o %(left) %(right) $(LDLIBS)
  33.  
  34. $(OBJS) : $(SRCS) $(INCL)
  35.         $(CC) $(LOCALCFLAGS) -o %(left) %(*.c) -c
  36.  
  37. clean:
  38.         -Delete $(APPS) *.o *.BAK
  39.