From: sgunderson Date: Sun, 17 Sep 2000 01:02:00 +0000 (+0000) Subject: ASSMS and CPPS are now derived directly from OBJS automatically, instead of spelling... X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=992dab7e105372c624051b3fc34b7179f961cd80;p=betaftpd ASSMS and CPPS are now derived directly from OBJS automatically, instead of spelling them out manually as before. --- 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