mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-22 22:00:49 +00:00
Small changes in the dependency between install and all targets.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@2492 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
45c61c0f68
commit
49333fc453
3 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Wed Oct 8 11:57:48 1997 Ovidiu Predescu <ovidiu@net-community.com>
|
||||
|
||||
* library.make: Define the `before-install' target to depend on `all'.
|
||||
* rules.make: `install' no longer depends on all.
|
||||
|
||||
Tue Oct 7 15:59:28 1997 Ovidiu Predescu <ovidiu@net-community.com>
|
||||
|
||||
* common.make: New FOUNDATION_LIBRARY_NAME, FOUNDATION_LIBRARY_DEFINE
|
||||
|
|
|
@ -63,6 +63,8 @@ import-library::
|
|||
internal-install:: internal-install-dirs internal-install-headers \
|
||||
internal-install-lib
|
||||
|
||||
before-install:: all
|
||||
|
||||
internal-install-dirs::
|
||||
$(GNUSTEP_MAKEFILES)/mkinstalldirs \
|
||||
$(GNUSTEP_LIBRARIES_ROOT) \
|
||||
|
|
|
@ -262,7 +262,7 @@ C_OBJ_FILES = $(PSWRAP_OBJ_FILES) $(addprefix $(GNUSTEP_OBJ_DIR)/,$(C_OBJS))
|
|||
#
|
||||
all:: before-all internal-all after-all
|
||||
|
||||
install:: all before-install internal-install after-install
|
||||
install:: before-install internal-install after-install
|
||||
|
||||
uninstall:: before-uninstall internal-uninstall after-uninstall
|
||||
|
||||
|
|
Loading…
Reference in a new issue