From: David J. MacKenzie Date: Tue, 20 Sep 1994 21:24:38 +0000 (+0000) Subject: Initial revision X-Git-Tag: Release-0-25~453 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=802d7d83cdc8b2a3e1630d587ee472a15c867fd1;p=thirdparty%2Fautomake.git Initial revision --- diff --git a/compile-kr.am b/compile-kr.am new file mode 100644 index 000000000..13237281f --- /dev/null +++ b/compile-kr.am @@ -0,0 +1,19 @@ +.SUFFIXES: .krc .krh .kro + +.c.krc: + $(ANSI2KNR) $< > $@ + +.h.krh: + $(ANSI2KNR) $< > $@ + +.krc.kro: + cp $< krtmp$$.c && \ + $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) krtmp$$.c && \ + mv krtmp$$.o $@ + +.c.kro: + $(ANSI2KNR) $< > $*.krc + cp $*.krc krtmp$$.c && \ + $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) krtmp$$.c && \ + mv krtmp$$.o $@ +