diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-10-19 00:58:41 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-10-19 00:58:41 +0000 |
commit | 9fa7a452d4f7116873d57a96619979b05f9ff0ce (patch) | |
tree | e8c10faa0360df560cda497d62ce6d0ec653d614 /packages/linux_make/Makefile | |
parent | 8d20ae669c7f4bb52c60a63337e94291f8095b14 (diff) |
added standard package_clean target
svn path=/trunk/; revision=6139
Diffstat (limited to 'packages/linux_make/Makefile')
-rwxr-xr-x | packages/linux_make/Makefile | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/packages/linux_make/Makefile b/packages/linux_make/Makefile index b0007db0..9e2b7617 100755 --- a/packages/linux_make/Makefile +++ b/packages/linux_make/Makefile @@ -106,17 +106,25 @@ installer_clean: #==============================================================================# # -## CVS SOURCES +## CLEAN TARGETS # #==============================================================================# -distclean: clean +distclean: installer_clean $(MAKE) -C $(packages_src) $(DEST_PATHS) distclean clean: installer_clean $(MAKE) -C $(packages_src) $(DEST_PATHS) clean +package_clean: installer_clean + + +#==============================================================================# +# +## TEST TARGETS +# +#==============================================================================# test_package: cd /tmp && tar xjf $(DESTDIR)/$(PACKAGE_NAME).tar.bz2 |