2003-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
	* startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
This commit is contained in:
Ralf Corsepius
2003-12-12 13:29:08 +00:00
parent e97bfdeda4
commit 6fea97df59
3 changed files with 14 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2003-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
* startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
2003-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac: Require automake >= 1.8, autoconf >= 2.59.

View File

@@ -10,7 +10,7 @@ SUBDIRS = . dlentry flashentry startup @exceptions@ wrapup
include $(top_srcdir)/../../bsp.am
dist_project_lib_DATA = bsp_specs.dl
dist_project_lib_DATA += bsp_specs.dl
include_HEADERS += include/coverhd.h
@@ -20,6 +20,10 @@ EXTRA_DIST = times
TMPINSTALL_FILES =
${PROJECT_RELEASE}/lib/bsp_specs.dl: bsp_specs.dl ${PROJECT_RELEASE}/lib/$(dirstamp)
$(INSTALL_DATA) $< ${PROJECT_RELEASE}/lib/bsp_specs.dl
TMPINSTALL_FILES += ${PROJECT_RELEASE}/lib/bsp_specs.dl
$(PROJECT_INCLUDE)/coverhd.h: include/coverhd.h $(PROJECT_INCLUDE)/$(dirstamp)
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/coverhd.h
PREINSTALL_FILES += $(PROJECT_INCLUDE)/coverhd.h

View File

@@ -30,6 +30,10 @@ all-local: $(PGM) $(TMPINSTALL_FILES)
EXTRA_DIST = bspclean.c bspstart.c linkcmds linkcmds.dl setvec.c
${PROJECT_RELEASE}/lib/$(dirstamp):
@$(mkdir_p) ${PROJECT_RELEASE}/lib
@: > ${PROJECT_RELEASE}/lib/$(dirstamp)
${PROJECT_RELEASE}/lib/linkcmds: linkcmds ${PROJECT_RELEASE}/lib/$(dirstamp)
$(INSTALL_DATA) $< ${PROJECT_RELEASE}/lib/linkcmds
TMPINSTALL_FILES += ${PROJECT_RELEASE}/lib/linkcmds