From 3774089a7018c1216a35e1a8ba93fb4ac5d3a783 Mon Sep 17 00:00:00 2001 From: zetaPRIME Date: Tue, 17 Jan 2017 02:12:14 -0500 Subject: [PATCH] more makefile stuff --- libstarlight/Makefile | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/libstarlight/Makefile b/libstarlight/Makefile index 49d4a79..d0df14a 100644 --- a/libstarlight/Makefile +++ b/libstarlight/Makefile @@ -100,19 +100,20 @@ export LIBPATHS := $(foreach dir,$(LIBDIRS),-L$(dir)/lib) all: $(BUILD) dist-bin: all - rm -rf include/ - rsync -a --include '*/' --include '*.h' --include '*.hpp' --exclude '*' source/ include/ + @rm -rf include/ + @rsync -a --include '*/' --include '*.h' --include '*.hpp' --exclude '*' source/ include/ @tar --exclude=*~ -cjf libstarlight-$(VERSION).tar.bz2 include lib dist-src: - rm -rf include/ - rsync -a --include '*/' --include '*.h' --include '*.hpp' --exclude '*' source/ include/ + @rm -rf include/ + @rsync -a --include '*/' --include '*.h' --include '*.hpp' --exclude '*' source/ include/ @tar --exclude=*~ -cjf libstarlight-src-$(VERSION).tar.bz2 include source data Makefile Doxyfile Doxyfile.internal dist: dist-src dist-bin install: dist-bin - mkdir -p $(DEVKITPRO)/libstarlight + @rm -rf $(DEVKITPRO)/libstarlight + @mkdir -p $(DEVKITPRO)/libstarlight bzip2 -cd libstarlight-$(VERSION).tar.bz2 | tar -xf - -C $(DEVKITPRO)/libstarlight dox: @@ -129,7 +130,7 @@ $(BUILD): lib #--------------------------------------------------------------------------------- clean: @echo clean ... - @rm -fr $(BUILD) lib docs internal_docs + @rm -fr $(BUILD) lib include docs internal_docs #--------------------------------------------------------------------------------- else