2004-01-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* syscall/Makefile.am: Remove.
	* reg_win/Makefile.am: Remove.
	* cache/Makefile.am: Remove.
	* Makefile.am: Merge-in Makefile.ams above. Use automake compilation
	rules.
	* configure.ac: Reflect changes above.
	Add subdir-objects to AUTOMAKE_OPTIONS.
	Require automake >= 1.8.2.
This commit is contained in:
Ralf Corsepius
2004-01-18 07:00:07 +00:00
parent 96fc70b248
commit 0cf9970b44
6 changed files with 89 additions and 116 deletions

View File

@@ -1,33 +0,0 @@
##
## $Id$
##
PGM = $(ARCH)/syscall.rel
## Assembly sources
S_FILES = syscall.S
noinst_HEADERS = syscall.h
syscall_rel_OBJECTS = $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))
include $(top_srcdir)/../../../automake/compile.am
include $(top_srcdir)/../../../automake/lib.am
#
# (OPTIONAL) Add local stuff here using +=
#
$(PGM): $(syscall_rel_OBJECTS)
$(make-rel)
# the .rel file built here will be put into libbsp.a by
# libbsp/sparc/BSP/wrapup/Makefile
all-local: $(syscall_rel_OBJECTS) $(PGM)
.PRECIOUS: $(PGM)
EXTRA_DIST = syscall.S syscall.h
include $(top_srcdir)/../../../automake/local.am