2002-08-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
This commit is contained in:
Ralf Corsepius
2002-08-11 07:21:01 +00:00
parent 4eb22aac46
commit 55ac4e14f7
2 changed files with 6 additions and 2 deletions

View File

@@ -1,3 +1,7 @@
2002-08-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
2002-08-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac: Add BSP_SUBDIRS.

View File

@@ -28,7 +28,7 @@ SRCS = $(LIBBSP) $(LIBNETWORKING) $(LIBRDBG) \
../libchip/serial/$(ARCH)/libserialio.a \
$(wildcard $(PROJECT_RELEASE)/lib/libnetchip$(LIB_VARIANT).a) \
../libmisc/wrapup/$(ARCH)/libmisc.a \
$(wildcard $(PROJECT_RELEASE)/lib/rtems-ctor$(LIB_VARIANT).o)
$(wildcard $(PROJECT_RELEASE)/lib/rtems-ctor$(LIB_VARIANT).$(OBJEXT))
TMPINSTALL_FILES += $(LIB)
@@ -40,7 +40,7 @@ $(LIB): $(SRCS)
test -d $(ARCH) || mkdir $(ARCH)
for f in $(SRCS); do \
case $$f in \
*.o | *.rel) \
*.$(OBJEXT) | *.rel) \
if test -f $(ARCH)/`basename $$f`; then \
if cmp $$f $(ARCH)/`basename $$f`; then \
true; \