diff options
author | Thomas Bushnell <thomas@gnu.org> | 1999-09-17 11:42:20 +0000 |
---|---|---|
committer | Thomas Bushnell <thomas@gnu.org> | 1999-09-17 11:42:20 +0000 |
commit | e4c28917dd3ee9708ded9fe19b314e6ca4ab5eef (patch) | |
tree | 9c15d9089a6039de5f025da70db0ef3605503ba6 /Makeconf | |
parent | 91b64adda28e0545b00f145000e9aff87134f068 (diff) |
1999-09-17 Thomas Bushnell, BSG <tb@mit.edu>
* Makeconf [Installation section]: Last change (9 Sep 1999) broke
this. Separate more clearly the library and non-library install
rules.
Diffstat (limited to 'Makeconf')
-rw-r--r-- | Makeconf | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -175,6 +175,9 @@ endif endif # Installation +ifneq ($(makemode),library) + +# not library ifndef targets targets = $(target) endif @@ -184,8 +187,10 @@ all: $(install-targets) install: $(installationdir) $(addprefix $(installationdir)/,$(install-targets)) $(addprefix $(installationdir)/,$(installable)): $(installationdir)/%: % $(INSTALL_PROGRAM) $(INSTALL-$<-ops) $< $@ +else + +# library (several parts, library itself, headers, etc.) -ifeq ($(makemode),library) all: libs install libs: add-to-librecord add-to-librecord: $(targets) |