]> sourceware.org Git - automake.git/commitdiff
Initial revision
authorDavid J. MacKenzie <djm@gnu.org>
Tue, 20 Sep 1994 21:24:38 +0000 (21:24 +0000)
committerDavid J. MacKenzie <djm@gnu.org>
Tue, 20 Sep 1994 21:24:38 +0000 (21:24 +0000)
compile-kr.am [new file with mode: 0644]

diff --git a/compile-kr.am b/compile-kr.am
new file mode 100644 (file)
index 0000000..1323728
--- /dev/null
@@ -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 $@
+
This page took 0.028094 seconds and 5 git commands to generate.