mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-28 10:05:13 +08: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:
|
||||
$(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))
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -18,4 +18,7 @@ MYSRCS = \
|
|||
|
||||
LIB_A = libjansson.a
|
||||
|
||||
# Transition: remove old directories and objects
|
||||
MYCLEANOLDPATH = ../../jansson
|
||||
|
||||
include ../../../Makefile.host
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -17,6 +17,9 @@ MYSRCS = \
|
|||
|
||||
LIB_A = libreveng.a
|
||||
|
||||
# Transition: remove old directories and objects
|
||||
MYCLEANOLDPATH = ../../reveng
|
||||
|
||||
include ../../../Makefile.host
|
||||
|
||||
CLEAN += bmptst
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue