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

* rootfs/Makefile.am: Use include_rtems_HEADERS instead of H_FILES.
This commit is contained in:
Joel Sherrill
2002-01-08 12:05:47 +00:00
parent 74e0ba5d9f
commit 8accf469f7
3 changed files with 12 additions and 3 deletions

View File

@@ -1,3 +1,7 @@
2002-01-07 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* rootfs/Makefile.am: Use include_rtems_HEADERS instead of H_FILES.
2002-01-04 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* mw-fb/mw_uid.c: Apply rtems_set_errno_and_return_minus_one.

View File

@@ -10,7 +10,8 @@ LIB = $(ARCH)/$(LIBNAME).a
C_FILES = mkrootfs.c
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
H_FILES = mkrootfs.h
include_rtemsdir = $(includedir)/rtems
include_rtems_HEADERS = mkrootfs.h
OBJS = $(C_O_FILES)
@@ -31,7 +32,7 @@ $(LIB): $(OBJS)
$(make-library)
PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems \
$(H_FILES:%=$(PROJECT_INCLUDE)/rtems/%)
$(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%)
if HAS_NETWORKING
all-local: $(ARCH) $(PREINSTALL_FILES) $(OBJS) $(LIB)
@@ -39,6 +40,6 @@ endif
.PRECIOUS: $(LIB)
EXTRA_DIST = README mkrootfs.c mkrootfs.h
EXTRA_DIST = README mkrootfs.c
include $(top_srcdir)/../../../automake/local.am