Changeset 8588963 in rtems
- Timestamp:
- Dec 12, 2003, 4:10:30 PM (16 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, master
- Children:
- c0719a1
- Parents:
- b0805d8
- Location:
- testsuites/support
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
testsuites/support/ChangeLog
rb0805d8 r8588963 1 2003-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES. 4 Use include_HEADERS. 5 1 6 2003-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 7 -
testsuites/support/Makefile.am
rb0805d8 r8588963 5 5 ACLOCAL_AMFLAGS = -I ../aclocal 6 6 7 project_bspdir = $(PROJECT_ROOT)/@RTEMS_BSP@ 7 include_HEADERS = include/tmacros.h include/buffer_test_io.h 8 8 9 noinst_HEADERS = include/tmacros.h include/buffer_test_io.h 9 all-local: $(PREINSTALL_FILES) 10 10 11 TMPINSTALLFILES = $(project_bspdir)/lib/include \ 12 $(project_bspdir)/lib/include/tmacros.h \ 13 $(project_bspdir)/lib/include/buffer_test_io.h 11 PREINSTALL_FILES = 14 12 15 $(project_bspdir)/lib/include: 16 $(mkinstalldirs) $@ 17 $(project_bspdir)/lib/include/%.h: include/%.h 18 $(INSTALL_DATA) $< $@ 13 $(PROJECT_INCLUDE)/$(dirstamp): 14 @$(mkdir_p) $(PROJECT_INCLUDE) 15 @: > $(PROJECT_INCLUDE)/$(dirstamp) 19 16 20 CLEANFILES = $(project_bspdir)/lib/include/tmacros.h \ 21 $(project_bspdir)/lib/include/buffer_test_io.h 17 $(PROJECT_INCLUDE)/tmacros.h: include/tmacros.h $(PROJECT_INCLUDE)/$(dirstamp) 18 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/tmacros.h 19 PREINSTALL_FILES += $(PROJECT_INCLUDE)/tmacros.h 22 20 23 all-local: $(TMPINSTALLFILES) 21 $(PROJECT_INCLUDE)/buffer_test_io.h: include/buffer_test_io.h $(PROJECT_INCLUDE)/$(dirstamp) 22 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/buffer_test_io.h 23 PREINSTALL_FILES += $(PROJECT_INCLUDE)/buffer_test_io.h 24 24 25 25 include $(top_srcdir)/../automake/local.am
Note: See TracChangeset
for help on using the changeset viewer.