2001-11-26 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* src/imfs/Makefile.am: Cleanup.
This commit is contained in:
Joel Sherrill
2001-11-26 14:34:09 +00:00
parent 4efd0f6610
commit f667aaecf0
6 changed files with 21 additions and 48 deletions

View File

@@ -1,3 +1,7 @@
2001-11-26 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* src/imfs/Makefile.am: Cleanup.
2001-11-07 Jennifer Averett <jennifer@OARcorp.com>
Reported by Ibragimov Ilya <ibr@oktet.ru> and tracked as PR49.

View File

@@ -32,32 +32,19 @@ endif
C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
include_HEADERS = imfs.h
SYS_H_FILES =
RTEMS_H_FILES =
noinst_HEADERS =
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(top_srcdir)/../../../automake/compile.am
include $(top_srcdir)/../../../automake/lib.am
PREINSTALL_FILES = $(PROJECT_INCLUDE) $(PROJECT_INCLUDE)/rtems \
$(PROJECT_INCLUDE)/sys $(include_HEADERS:%=$(PROJECT_INCLUDE)/%) \
$(RTEMS_H_FILES:%=$(PROJECT_INCLUDE)/rtems/%) \
$(SYS_H_FILES:%=$(PROJECT_INCLUDE)/sys/%)
PREINSTALL_FILES = $(PROJECT_INCLUDE) \
$(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
$(PROJECT_INCLUDE):
@$(mkinstalldirs) $@
$(PROJECT_INCLUDE)/rtems:
@$(mkinstalldirs) $@
$(PROJECT_INCLUDE)/sys:
@$(mkinstalldirs) $@
$(PROJECT_INCLUDE)/%.h: %.h
$(INSTALL_DATA) $< $@
$(PROJECT_INCLUDE)/rtems/%.h: %.h
$(INSTALL_DATA) $< $@
$(PROJECT_INCLUDE)/sys/%.h: %.h
$(INSTALL_DATA) $< $@
OBJS = $(C_O_FILES)
@@ -75,6 +62,6 @@ $(LIB): ${OBJS}
DOC_FILES = TODO CASES
EXTRA_DIST = $(DOC_FILES) $(COMMON_C_FILES) $(EMBEDDED_C_FILES) \
$(UNIX_C_FILES) $(RTEMS_H_FILES) $(SYS_H_FILES)
$(UNIX_C_FILES)
include $(top_srcdir)/../../../automake/local.am