2002-07-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* src/dosfs/Makefile.am: Use .$(OBJEXT) instead of .o.
	* src/src/imfs/Makefile.am: Ditto.
This commit is contained in:
Ralf Corsepius
2002-07-22 13:44:42 +00:00
parent 4ca9353487
commit 239cf33037
3 changed files with 7 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
2002-07-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* src/dosfs/Makefile.am: Use .$(OBJEXT) instead of .o.
* src/src/imfs/Makefile.am: Ditto.
2002-07-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* src/dosfs/Makefile.am: Use AM_CPPFLAGS instead of INCLUDES and

View File

@@ -21,7 +21,7 @@ LIB = ${ARCH}/libdosfs.a
C_FILES = $(FATFS_C_FILES) $(DOSFS_C_FILES)
C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
C_O_FILES = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT))
include_HEADERS = dosfs.h

View File

@@ -24,7 +24,7 @@ C_FILES = $(COMMON_C_FILES) $(UNIX_C_FILES)
else
C_FILES = $(COMMON_C_FILES) $(EMBEDDED_C_FILES)
endif
C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
C_O_FILES = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT))
include_HEADERS = imfs.h