From 992dab7e105372c624051b3fc34b7179f961cd80 Mon Sep 17 00:00:00 2001 From: sgunderson Date: Sun, 17 Sep 2000 01:02:00 +0000 Subject: [PATCH] ASSMS and CPPS are now derived directly from OBJS automatically, instead of spelling them out manually as before. --- Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.in b/Makefile.in index b84ac3f..9ac588b 100644 --- a/Makefile.in +++ b/Makefile.in @@ -12,8 +12,8 @@ CFLAGS = @CFLAGS@ REAL_CFLAGS = $(CFLAGS) @DEFS@ -I@srcdir@ -I. -DVERSION=\"$(VERSION)\" LIBS = @LIBS@ OBJS = disp.o ftpd.o cmds.o nonroot.o ascii.o dcache.o -ASSMS = disp.s ftpd.s cmds.s nonroot.s ascii.s dcache.s -CPPS = disp.i ftpd.i cmds.i nonroot.i ascii.i dcache.i +ASSMS = ${OBJS:.o=.s} +CPPS = ${OBJS:.o=.i} # Since we use VPATH, override .c.o rule .c.o: $*.c config.h -- 2.39.2