mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 18:11:06 +00:00
* Panels/GNUmakefile make local targets double colon, add local clean to
fix make clean failure. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@3335 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
d075ae5aa6
commit
16dab0eb75
2 changed files with 7 additions and 3 deletions
|
@ -4,6 +4,8 @@ Thu Nov 26 1998 Felipe A. Rodriguez <far@ix.netcom.com>
|
|||
during merge. Move method from _eventMatchingMask to tail of run
|
||||
method for performance reasons.
|
||||
* Tools/dummy.m add various new dummy functions.
|
||||
* Panels/GNUmakefile make local targets double colon, add local clean to
|
||||
fix make clean failure.
|
||||
|
||||
Wed Nov 25 1998 Felipe A. Rodriguez <far@ix.netcom.com>
|
||||
|
||||
|
|
|
@ -39,10 +39,10 @@ INSTALL_DATA = ${INSTALL} -m 644
|
|||
|
||||
PANELS = SavePanel.gmodel
|
||||
|
||||
all:
|
||||
all::
|
||||
@
|
||||
|
||||
install: all
|
||||
install:: all
|
||||
if [ ! -e $(prefix)/Library ]; then \
|
||||
mkdir $(prefix)/Library; \
|
||||
fi
|
||||
|
@ -53,12 +53,14 @@ install: all
|
|||
$(INSTALL_DATA) $$f $(prefix)/Library/Model/; \
|
||||
done
|
||||
|
||||
uninstall:
|
||||
uninstall::
|
||||
for f in $(PANELS); do \
|
||||
rm -f $(prefix)/Library/Model/$$f; \
|
||||
done
|
||||
rmdir $(prefix)/Library/Model
|
||||
|
||||
clean::
|
||||
|
||||
-include GNUmakefile.preamble
|
||||
|
||||
#include $(GNUSTEP_MAKEFILES)/aggregate.make
|
||||
|
|
Loading…
Reference in a new issue