Changeset babf575 in rtems for cpukit/score/cpu/unix
- Timestamp:
- 02/08/05 15:45:55 (19 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 624867b
- Parents:
- 418372a1
- Location:
- cpukit/score/cpu/unix
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/score/cpu/unix/ChangeLog
r418372a1 rbabf575 1 2005-02-08 Ralf Corsepius <ralf.corsepius@rtems.org> 2 3 * Makefile.am: Split out preinstallation rules. 4 * preinstall.am: New (Split out from Makefile.am). 5 1 6 2005-02-04 Ralf Corsepius <ralf.corsepius@rtems.org> 2 7 -
cpukit/score/cpu/unix/Makefile.am
r418372a1 rbabf575 4 4 5 5 include $(top_srcdir)/automake/compile.am 6 7 CLEANFILES = 8 DISTCLEANFILES = 6 9 7 10 AM_CPPFLAGS += -DCPU_SYNC_IO … … 20 23 all-local: $(PREINSTALL_FILES) 21 24 22 PREINSTALL_DIRS = 23 PREINSTALL_FILES = 24 25 $(PROJECT_INCLUDE)/rtems/$(dirstamp): 26 @$(mkdir_p) $(PROJECT_INCLUDE)/rtems 27 @: > $(PROJECT_INCLUDE)/rtems/$(dirstamp) 28 PREINSTALL_DIRS += $(PROJECT_INCLUDE)/rtems/$(dirstamp) 29 30 $(PROJECT_INCLUDE)/rtems/asm.h: rtems/asm.h $(PROJECT_INCLUDE)/rtems/$(dirstamp) 31 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/asm.h 32 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/asm.h 33 34 $(PROJECT_INCLUDE)/rtems/score/$(dirstamp): 35 @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/score 36 @: > $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) 37 PREINSTALL_DIRS += $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) 38 39 $(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) 40 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/types.h 41 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.h 42 43 $(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) 44 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/cpu.h 45 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h 46 47 $(PROJECT_INCLUDE)/rtems/score/unix.h: rtems/score/unix.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) 48 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/unix.h 49 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/unix.h 50 51 CLEANFILES = $(PREINSTALL_FILES) 52 DISTCLEANFILES = $(PREINSTALL_DIRS) 25 include $(srcdir)/preinstall.am 53 26 54 27 include $(top_srcdir)/automake/local.am
Note: See TracChangeset
for help on using the changeset viewer.