Changeset 6547cf0 in rtems
- Timestamp:
- 11/26/03 15:31:12 (20 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 3bfda69
- Parents:
- 805d764d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/Makefile.am
r805d764d r6547cf0 20 20 CLEANFILES = preinstall-stamp 21 21 22 $(PROJECT_INCLUDE)/%.h: include/%.h23 $(INSTALL_DATA) $< $@24 25 $(PROJECT_INCLUDE):26 @$(mkinstalldirs) $@27 28 $(PROJECT_INCLUDE)/rtems:29 @$(mkinstalldirs) $@30 31 PREINSTALL_FILES = $(PROJECT_INCLUDE)32 33 22 include_rtemsdir = $(includedir)/rtems 34 23 include_rtems_HEADERS = include/rtems/bspIo.h include/rtems/userenv.h \ 35 include/rtems/fs.h include/rtems/stdint.h24 include/rtems/fs.h include/rtems/stdint.h 36 25 37 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems \ 38 $(include_rtems_HEADERS:include/%.h=$(PROJECT_INCLUDE)/%.h) 39 40 all-local: $(PREINSTALL_FILES) 26 BUILT_SOURCES = $(PREINSTALL_FILES) 41 27 42 28 AUTOMAKE_FILES = automake/compile.am automake/lib.am automake/local.am \ … … 44 30 EXTRA_DIST = $(AUTOMAKE_FILES) 45 31 32 PREINSTALL_FILES = 33 34 $(PROJECT_INCLUDE)/rtems: 35 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems 36 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems 37 38 $(PROJECT_INCLUDE)/rtems/bspIo.h: include/rtems/bspIo.h 39 $(INSTALL_DATA) $< $@ 40 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/bspIo.h 41 42 $(PROJECT_INCLUDE)/rtems/userenv.h: include/rtems/userenv.h 43 $(INSTALL_DATA) $< $@ 44 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/userenv.h 45 46 $(PROJECT_INCLUDE)/rtems/fs.h: include/rtems/fs.h 47 $(INSTALL_DATA) $< $@ 48 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/fs.h 49 50 $(PROJECT_INCLUDE)/rtems/stdint.h: include/rtems/stdint.h 51 $(INSTALL_DATA) $< $@ 52 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/stdint.h 53 46 54 include $(top_srcdir)/automake/subdirs.am 47 55 include $(top_srcdir)/automake/local.am
Note: See TracChangeset
for help on using the changeset viewer.