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

* Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
	* startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
This commit is contained in:
Ralf Corsepius
2003-12-13 05:08:44 +00:00
parent efe9ef4ef5
commit 3e5730ea9b
3 changed files with 14 additions and 9 deletions

View File

@@ -1,3 +1,8 @@
2003-12-13 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
* startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
2003-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.

View File

@@ -20,9 +20,9 @@ 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_LIB)/bsp_specs.dl: bsp_specs.dl $(PROJECT_LIB)/$(dirstamp)
$(INSTALL_DATA) $< $(PROJECT_LIB)/bsp_specs.dl
TMPINSTALL_FILES += $(PROJECT_LIB)/bsp_specs.dl
$(PROJECT_INCLUDE)/coverhd.h: include/coverhd.h $(PROJECT_INCLUDE)/$(dirstamp)
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/coverhd.h

View File

@@ -30,12 +30,12 @@ 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_LIB)/$(dirstamp):
@$(mkdir_p) $(PROJECT_LIB)
@: > $(PROJECT_LIB)/$(dirstamp)
${PROJECT_RELEASE}/lib/linkcmds: linkcmds ${PROJECT_RELEASE}/lib/$(dirstamp)
$(INSTALL_DATA) $< ${PROJECT_RELEASE}/lib/linkcmds
TMPINSTALL_FILES += ${PROJECT_RELEASE}/lib/linkcmds
$(PROJECT_LIB)/linkcmds: linkcmds $(PROJECT_LIB)/$(dirstamp)
$(INSTALL_DATA) $< $(PROJECT_LIB)/linkcmds
TMPINSTALL_FILES += $(PROJECT_LIB)/linkcmds
include $(top_srcdir)/../../../../automake/local.am