home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / metamail / richmail / DMakefile < prev    next >
Encoding:
Makefile  |  1992-11-20  |  1.4 KB  |  43 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. CFLAGS = -gs -r -ms -I.
  16.  
  17. LDLIBS = UULIB:uucp.lib
  18.  
  19. CONFIGDIR = /
  20. UUCPINCLUDE = uucp:src/include
  21.  
  22. LOCALCFLAGS= -I$(CONFIGDIR) $(CFLAGS) -I$(UUCPINCLUDE)
  23.  
  24. SRCS = iso2022.c richlex.c richset.c richtext.c richtoatk.c usascii.c
  25. OBJS = iso2022.o richlex.o richset.o richtext.o richtoatk.o usascii.o
  26. APPS = richtext
  27.  
  28. # I have not bothered to port richtoatk. /JW
  29. #all:  richtext richtoatk
  30. all: $(APPS)
  31.  
  32. richtext: richtext.o iso2022.o richlex.o richset.o usascii.o
  33.         $(CC) $(LOCALCFLAGS) -o %(left) %(right) $(LDLIBS)
  34.  
  35. richtoatk: richtoatk.o iso2022.o richlex.o richset.o usascii.o
  36.         $(CC) $(LOCALCFLAGS) -o %(left) %(right) $(LDLIBS)
  37.  
  38. $(OBJS) : $(SRCS)
  39.         $(CC) $(LOCALCFLAGS) -o %(left) %(right) -c
  40.  
  41. clean:
  42.         -Delete $(APPS) #?.o #?.BAK
  43.