diff options
author | Bdale Garbee <bdale@gag.com> | 2010-09-02 00:47:54 -0400 |
---|---|---|
committer | Bdale Garbee <bdale@gag.com> | 2010-09-02 00:47:54 -0400 |
commit | 83552dfa0d38db9cdf3efc89e64e6c7896467856 (patch) | |
tree | c85e8888672459acab99b802e80c9228731d6173 | |
parent | 6f24d2a476759104a10b26b54faff2b18b0e208b (diff) |
add distclean targets to libaltos and altosui to all Debian package to build
-rw-r--r-- | ao-tools/altosui/Makefile | 2 | ||||
-rw-r--r-- | ao-tools/libaltos/Makefile | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/ao-tools/altosui/Makefile b/ao-tools/altosui/Makefile index bf92b5d6..92922de3 100644 --- a/ao-tools/altosui/Makefile +++ b/ao-tools/altosui/Makefile @@ -134,6 +134,8 @@ clean: rm -rf classes rm -rf windows linux +distclean: clean + FAT_FILES=$(FATJAR) $(FREETTSJAR) $(HEXFILES) LINUX_FILES=$(FAT_FILES) ../libaltos/libaltos.so fat/altosui diff --git a/ao-tools/libaltos/Makefile b/ao-tools/libaltos/Makefile index 77ffa1b4..cb767c85 100644 --- a/ao-tools/libaltos/Makefile +++ b/ao-tools/libaltos/Makefile @@ -106,6 +106,8 @@ clean: rm -f $(CLASSFILES) $(OBJS) $(LIBNAME) $(CJNITEST) cjnitest.o rm -rf swig_bindings libaltosJNI +distclean: clean + $(JNI_FILE): libaltos.i0 $(HEADERS) mkdir -p $(SWIG_DIR) mkdir -p libaltosJNI |