diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2005-11-21 07:03:50 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2005-11-21 07:03:50 +0000 |
commit | 539e0c2357d220a9c063a52265aa5e16c45c8a66 (patch) | |
tree | 8dc7154e43aa24af9613f4144745e55e06884647 /packages/Makefile | |
parent | 196343bb45dad2fd80851888184b8140c3e11adf (diff) |
a few tweaks to make sure everything is assembling
svn path=/trunk/; revision=3995
Diffstat (limited to 'packages/Makefile')
-rw-r--r-- | packages/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/packages/Makefile b/packages/Makefile index 72d94f68..c7d98d24 100644 --- a/packages/Makefile +++ b/packages/Makefile @@ -238,6 +238,7 @@ pd_install: pd #------------------------------------------------------------------------------ # install +install: license_install readme_install welcome_install install: pd_install abstractions_install doc_install externals_install #install: flext_install gem_install @echo "Complete install succeeded!" @@ -251,7 +252,7 @@ install: pd_install abstractions_install doc_install externals_install #==============================================================================# LICENSE_FILE = $(INSTALL_PREFIX)/License.html -license: +license_install: # generate HTML version of License touch $(LICENSE_FILE) echo "<html><body>" >> "$(LICENSE_FILE)" @@ -264,7 +265,7 @@ license: WELCOME_FILE = $(INSTALL_PREFIX)/Welcome.html -welcome: +welcome_install: touch $(WELCOME_FILE) echo "<html><body><p><p>" >> $(WELCOME_FILE) echo "<CENTER><IMG SRC=\"logo.jpg\">" >> $(WELCOME_FILE) @@ -278,7 +279,7 @@ welcome: README_FILE = $(INSTALL_PREFIX)/ReadMe.html -readme: +readme_install: echo $(CYCLONE_RELEASE) -rm $(README_FILE) touch $(README_FILE) |