Clean more old paths

This commit is contained in:
Philippe Teuwen
2020-04-21 01:44:31 +02:00
parent 69b6a8f7f9
commit 31e79905f8
6 changed files with 20 additions and 0 deletions
+5
View File
@@ -36,6 +36,11 @@ all: $(foreach bin,$(MYLIBS) $(BINS) $(LIB_A),$(BINDIR)/$(bin))
clean:
$(Q)$(RM) $(CLEAN)
$(Q)$(RMDIR) $(OBJDIR)
ifneq (,$(MYCLEANOLDPATH))
$(Q)$(RM) $(foreach f,$(CLEAN),$(MYCLEANOLDPATH)/$(f))
$(Q)$(RMDIR) $(MYCLEANOLDPATH)/$(OBJDIR)
$(Q)$(RMDIR_SOFT) $(MYCLEANOLDPATH)
endif
install: all
ifneq (,$(INSTALLTOOLS))
+3
View File
@@ -9,6 +9,9 @@ MYSRCS = \
LIB_A = libamiibo.a
# Transition: remove old directories and objects
MYCLEANOLDPATH = ../../amiitool
include ../../../Makefile.host
# just for testing amiitool before complete migration into a lib:
+3
View File
@@ -18,4 +18,7 @@ MYSRCS = \
LIB_A = libjansson.a
# Transition: remove old directories and objects
MYCLEANOLDPATH = ../../jansson
include ../../../Makefile.host
+3
View File
@@ -14,6 +14,9 @@ SYSCFLAGS=
LIB_A= liblua.a
# Transition: remove old directories and objects
MYCLEANOLDPATH = ../../liblua
# Your platform. See PLATS for possible values.
PLAT= none
+3
View File
@@ -17,6 +17,9 @@ MYSRCS = \
LIB_A = libreveng.a
# Transition: remove old directories and objects
MYCLEANOLDPATH = ../../reveng
include ../../../Makefile.host
CLEAN += bmptst
+3
View File
@@ -16,6 +16,9 @@ MYSRCS = \
LIB_A = tinycbor.a
# Transition: remove old directories and objects
MYCLEANOLDPATH = ../../tinycbor
# Strange errors on Mingw when compiling with -O3
CFLAGS ?= -Wall -Werror -O2