mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 14:20:50 +00:00
Remove .c and .h files generated by pswrap
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@11681 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
8a77c98ab1
commit
6bb25bb604
1 changed files with 6 additions and 1 deletions
|
@ -66,8 +66,13 @@ internal-install:: $(APP_NAME:=.install.app.variables)
|
|||
|
||||
internal-uninstall:: $(APP_NAME:=.uninstall.app.variables)
|
||||
|
||||
# Compute them manually to avoid having to do a recursive make
|
||||
# invocation just to remove them.
|
||||
_PSWRAP_C_FILES = $(foreach app,$(APP_NAME),$($(app)_PSWRAP_FILES:.psw=.c))
|
||||
_PSWRAP_H_FILES = $(foreach app,$(APP_NAME),$($(app)_PSWRAP_FILES:.psw=.h))
|
||||
|
||||
internal-clean:: $(APP_NAME:=.clean.app.subprojects)
|
||||
rm -rf $(GNUSTEP_OBJ_DIR)
|
||||
rm -rf $(GNUSTEP_OBJ_DIR) $(_PSWRAP_C_FILES) $(_PSWRAP_H_FILES)
|
||||
ifeq ($(OBJC_COMPILER), NeXT)
|
||||
rm -f *.iconheader
|
||||
for f in *.$(APP_EXTENSION); do \
|
||||
|
|
Loading…
Reference in a new issue