mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-19 21:03:48 -07:00
Clean more old paths
This commit is contained in:
parent
69b6a8f7f9
commit
31e79905f8
6 changed files with 20 additions and 0 deletions
|
@ -36,6 +36,11 @@ all: $(foreach bin,$(MYLIBS) $(BINS) $(LIB_A),$(BINDIR)/$(bin))
|
||||||
clean:
|
clean:
|
||||||
$(Q)$(RM) $(CLEAN)
|
$(Q)$(RM) $(CLEAN)
|
||||||
$(Q)$(RMDIR) $(OBJDIR)
|
$(Q)$(RMDIR) $(OBJDIR)
|
||||||
|
ifneq (,$(MYCLEANOLDPATH))
|
||||||
|
$(Q)$(RM) $(foreach f,$(CLEAN),$(MYCLEANOLDPATH)/$(f))
|
||||||
|
$(Q)$(RMDIR) $(MYCLEANOLDPATH)/$(OBJDIR)
|
||||||
|
$(Q)$(RMDIR_SOFT) $(MYCLEANOLDPATH)
|
||||||
|
endif
|
||||||
|
|
||||||
install: all
|
install: all
|
||||||
ifneq (,$(INSTALLTOOLS))
|
ifneq (,$(INSTALLTOOLS))
|
||||||
|
|
|
@ -9,6 +9,9 @@ MYSRCS = \
|
||||||
|
|
||||||
LIB_A = libamiibo.a
|
LIB_A = libamiibo.a
|
||||||
|
|
||||||
|
# Transition: remove old directories and objects
|
||||||
|
MYCLEANOLDPATH = ../../amiitool
|
||||||
|
|
||||||
include ../../../Makefile.host
|
include ../../../Makefile.host
|
||||||
|
|
||||||
# just for testing amiitool before complete migration into a lib:
|
# just for testing amiitool before complete migration into a lib:
|
||||||
|
|
|
@ -18,4 +18,7 @@ MYSRCS = \
|
||||||
|
|
||||||
LIB_A = libjansson.a
|
LIB_A = libjansson.a
|
||||||
|
|
||||||
|
# Transition: remove old directories and objects
|
||||||
|
MYCLEANOLDPATH = ../../jansson
|
||||||
|
|
||||||
include ../../../Makefile.host
|
include ../../../Makefile.host
|
||||||
|
|
|
@ -14,6 +14,9 @@ SYSCFLAGS=
|
||||||
|
|
||||||
LIB_A= liblua.a
|
LIB_A= liblua.a
|
||||||
|
|
||||||
|
# Transition: remove old directories and objects
|
||||||
|
MYCLEANOLDPATH = ../../liblua
|
||||||
|
|
||||||
# Your platform. See PLATS for possible values.
|
# Your platform. See PLATS for possible values.
|
||||||
PLAT= none
|
PLAT= none
|
||||||
|
|
||||||
|
|
|
@ -17,6 +17,9 @@ MYSRCS = \
|
||||||
|
|
||||||
LIB_A = libreveng.a
|
LIB_A = libreveng.a
|
||||||
|
|
||||||
|
# Transition: remove old directories and objects
|
||||||
|
MYCLEANOLDPATH = ../../reveng
|
||||||
|
|
||||||
include ../../../Makefile.host
|
include ../../../Makefile.host
|
||||||
|
|
||||||
CLEAN += bmptst
|
CLEAN += bmptst
|
||||||
|
|
|
@ -16,6 +16,9 @@ MYSRCS = \
|
||||||
|
|
||||||
LIB_A = tinycbor.a
|
LIB_A = tinycbor.a
|
||||||
|
|
||||||
|
# Transition: remove old directories and objects
|
||||||
|
MYCLEANOLDPATH = ../../tinycbor
|
||||||
|
|
||||||
# Strange errors on Mingw when compiling with -O3
|
# Strange errors on Mingw when compiling with -O3
|
||||||
CFLAGS ?= -Wall -Werror -O2
|
CFLAGS ?= -Wall -Werror -O2
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue