summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--cpukit/score/ChangeLog6
-rw-r--r--cpukit/score/Makefile.am6
2 files changed, 12 insertions, 0 deletions
diff --git a/cpukit/score/ChangeLog b/cpukit/score/ChangeLog
index 1fb3656c50..90592141ed 100644
--- a/cpukit/score/ChangeLog
+++ b/cpukit/score/ChangeLog
@@ -1,3 +1,9 @@
+2004-01-14 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * Makefile.am: Re-add dirstamps to PREINSTALL_FILES.
+ Add PREINSTALL_FILES to CLEANFILES.
+ Add cpuopts.h to DISTCLEANFILES.
+
2004-01-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* cpu/Makefile.am: Use @RTEMS_CPU@ instead of $(RTEMS_CPU).
diff --git a/cpukit/score/Makefile.am b/cpukit/score/Makefile.am
index 1f90aa003b..a149255431 100644
--- a/cpukit/score/Makefile.am
+++ b/cpukit/score/Makefile.am
@@ -159,11 +159,14 @@ EXTRA_DIST += $(STD_C_FILES) $(MP_C_FILES) src/Unlimited.txt
all-local: $(PREINSTALL_FILES) libscore$(LIB_VARIANT).a
+DISTCLEANFILES = include/rtems/score/cpuopts.h
+
PREINSTALL_FILES =
$(PROJECT_INCLUDE)/rtems/$(dirstamp):
@$(mkdir_p) $(PROJECT_INCLUDE)/rtems
@: > $(PROJECT_INCLUDE)/rtems/$(dirstamp)
+PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/$(dirstamp)
$(PROJECT_INCLUDE)/rtems/debug.h: include/rtems/debug.h $(PROJECT_INCLUDE)/rtems/$(dirstamp)
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/debug.h
@@ -180,6 +183,7 @@ PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/seterr.h
$(PROJECT_INCLUDE)/rtems/score/$(dirstamp):
@$(mkdir_p) $(PROJECT_INCLUDE)/rtems/score
@: > $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
+PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
$(PROJECT_INCLUDE)/rtems/score/address.h: include/rtems/score/address.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/address.h
@@ -478,5 +482,7 @@ PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/threadmp.inl
endif
endif
+CLEANFILES += $(PREINSTALL_FILES)
+
include $(top_srcdir)/automake/subdirs.am
include $(top_srcdir)/automake/local.am