mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-22 22:00:49 +00:00
On make clean, remove the .c and .h files generated by pwswrap
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@11683 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
ec58c509e1
commit
735e3f2b36
1 changed files with 4 additions and 1 deletions
|
@ -77,8 +77,11 @@ internal-install:: $(LIBRARY_NAME:=.install.library.variables)
|
|||
|
||||
internal-uninstall:: $(LIBRARY_NAME:=.uninstall.library.variables)
|
||||
|
||||
_PSWRAP_C_FILES = $(foreach lib,$(LIBRARY_NAME),$($(lib)_PSWRAP_FILES:.psw=.c))
|
||||
_PSWRAP_H_FILES = $(foreach lib,$(LIBRARY_NAME),$($(lib)_PSWRAP_FILES:.psw=.h))
|
||||
|
||||
internal-clean:: $(LIBRARY_NAME:=.clean.library.subprojects)
|
||||
rm -rf $(GNUSTEP_OBJ_DIR)
|
||||
rm -rf $(GNUSTEP_OBJ_DIR) $(_PSWRAP_C_FILES) $(_PSWRAP_H_FILES)
|
||||
|
||||
internal-distclean:: $(LIBRARY_NAME:=.distclean.library.subprojects)
|
||||
rm -rf shared_obj static_obj shared_debug_obj shared_profile_obj \
|
||||
|
|
Loading…
Reference in a new issue