# Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore) # # Permission to use, copy, modify, and distribute this material # for any purpose and without fee is hereby granted, provided # that the above copyright notice and this permission notice # appear in all copies, and that the name of Bellcore not be # used in advertising or publicity pertaining to this # material without the specific, prior written permission # of an authorized representative of Bellcore. BELLCORE # MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY # OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED "AS IS", # WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. # CC = dcc # -gs is probably no longer needed, leave it in to be on the safe side. CFLAGS = -gs -r -ms -I. LDLIBS = UULIB:uucp.lib CONFIGDIR = / UUCPINCLUDE = uucp:src/include LOCALCFLAGS= -I$(CONFIGDIR) $(CFLAGS) -I$(UUCPINCLUDE) SRCS = codes.c mailto.c metamail.c mmencode.c shared.c splitmail.c uue.c OBJS = codes.o mailto.o metamail.o mmencode.o shared.o splitmail.o uue.o APPS = metamail mmencode mailto splitmail all: $(APPS) mmencode: mmencode.o codes.o $(CC) $(LOCALCFLAGS) -o %(left) %(right) $(LDLIBS) mailto: mailto.o codes.o shared.o $(CC) $(LOCALCFLAGS) -o %(left) %(right) $(LDLIBS) splitmail: splitmail.o $(CC) $(LOCALCFLAGS) -o %(left) %(right) $(LDLIBS) metamail: metamail.o codes.o shared.o uue.o $(CC) $(LOCALCFLAGS) -o %(left) %(right) $(LDLIBS) $(OBJS) : $(SRCS) $(CC) $(LOCALCFLAGS) -o %(left) %(right) -c clean: -Delete $(APPS) #?.o #?.BAK