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

* src/imfs/Makefile.am: Eliminate C_O_FILES.
	* src/dosfs/Makefile.am: Ditto.
This commit is contained in:
Ralf Corsepius
2002-12-12 06:13:49 +00:00
parent bb89189ab5
commit 2d709236c9
3 changed files with 7 additions and 8 deletions

View File

@@ -1,3 +1,8 @@
2002-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* src/imfs/Makefile.am: Eliminate C_O_FILES.
* src/dosfs/Makefile.am: Ditto.
2002-12-02 Joel Sherrill <joel@OARcorp.com> 2002-12-02 Joel Sherrill <joel@OARcorp.com>
* src/dosfs/fat.h, src/dosfs/msdos.h: Added casts to remove warnings * src/dosfs/fat.h, src/dosfs/msdos.h: Added casts to remove warnings

View File

@@ -20,8 +20,7 @@ if !UNIX
LIB = ${ARCH}/libdosfs.a LIB = ${ARCH}/libdosfs.a
C_FILES = $(FATFS_C_FILES) $(DOSFS_C_FILES) C_FILES = $(FATFS_C_FILES) $(DOSFS_C_FILES)
OBJS = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT))
C_O_FILES = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT))
include_HEADERS = dosfs.h include_HEADERS = dosfs.h
@@ -33,9 +32,6 @@ $(PROJECT_INCLUDE):
$(PROJECT_INCLUDE)/%.h: %.h $(PROJECT_INCLUDE)/%.h: %.h
$(INSTALL_DATA) $< $@ $(INSTALL_DATA) $< $@
OBJS = $(C_O_FILES)
# #
# Add local stuff here using += # Add local stuff here using +=
# #

View File

@@ -24,7 +24,7 @@ C_FILES = $(COMMON_C_FILES) $(UNIX_C_FILES)
else else
C_FILES = $(COMMON_C_FILES) $(EMBEDDED_C_FILES) C_FILES = $(COMMON_C_FILES) $(EMBEDDED_C_FILES)
endif endif
C_O_FILES = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT)) OBJS = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT))
include_HEADERS = imfs.h include_HEADERS = imfs.h
@@ -43,8 +43,6 @@ $(PROJECT_INCLUDE):
$(PROJECT_INCLUDE)/%.h: %.h $(PROJECT_INCLUDE)/%.h: %.h
$(INSTALL_DATA) $< $@ $(INSTALL_DATA) $< $@
OBJS = $(C_O_FILES)
# #
# Add local stuff here using += # Add local stuff here using +=
# #