mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-22 22:00:49 +00:00
Tiny optm in rule to build ./obj symbolic link
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@10337 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
714aa046b8
commit
a8bbe8fff1
2 changed files with 8 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
|||
Mon Jul 9 11:30:21 2001 Nicola Pero <nicola@brainstorm.co.uk>
|
||||
|
||||
* rules.make ($(GNUSTEP_OBJ_DIR)): Send the three shell commands
|
||||
in this rule together.
|
||||
|
||||
Mon Jul 9 11:08:55 2001 Nicola Pero <nicola@brainstorm.co.uk>
|
||||
|
||||
* rules.make ($(GNUSTEP_MAKEFILES)/*.make): New empty rule.
|
||||
|
|
|
@ -507,9 +507,9 @@ OBJ_DIR_RULE = defined
|
|||
# The rule to create the objects file directory. This rule is here so that it
|
||||
# can be accessed from the global before and after targets as well.
|
||||
$(GNUSTEP_OBJ_DIR):
|
||||
@$(MKDIRS) ./$(GNUSTEP_OBJ_DIR)
|
||||
rm -f obj
|
||||
$(LN_S) ./$(GNUSTEP_OBJ_DIR) obj
|
||||
@($(MKDIRS) ./$(GNUSTEP_OBJ_DIR); \
|
||||
rm -f obj; \
|
||||
$(LN_S) ./$(GNUSTEP_OBJ_DIR) obj)
|
||||
endif
|
||||
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue