summaryrefslogtreecommitdiff
path: root/lib/am/compile.am
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>1997-10-25 05:08:42 +0000
committerTom Tromey <tromey@redhat.com>1997-10-25 05:08:42 +0000
commit7eacde0b04921031bb9bc224416f137489edc24e (patch)
treec32d1f5943d4457efd2553db314849656e70cefa /lib/am/compile.am
parent1910a4e5a34e5ac549768d25441e5a803f8e42f2 (diff)
downloadautomake-7eacde0b04921031bb9bc224416f137489edc24e.tar.gz
added assembler support
Diffstat (limited to 'lib/am/compile.am')
-rw-r--r--lib/am/compile.am8
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/am/compile.am b/lib/am/compile.am
index ea67e7bf6..97eb6afb1 100644
--- a/lib/am/compile.am
+++ b/lib/am/compile.am
@@ -1,5 +1,5 @@
## automake - create Makefile.in from Makefile.am
-## Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc.
+## Copyright (C) 1994, 1995, 1996, 1997 Free Software Foundation, Inc.
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
@@ -18,6 +18,12 @@
.c.o:
$(COMPILE) -c $<
+.s.o:
+ $(COMPILE) -c $<
+
+.S.o:
+ $(COMPILE) -c $<
+
mostlyclean-compile:
## Don't remove 'core.*' because some distributions have eg "core.c".
-rm -f *.o core