X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/1dea88f97640f5979b977a14347c558fabd5496c..d5be6f7cd4bedb62331f1ab61c63e74897b17d46:/Makefile diff --git a/Makefile b/Makefile index 287dc041..bb0d5589 100644 --- a/Makefile +++ b/Makefile @@ -1,21 +1,13 @@ include common/Makefile.common -ifeq ($(DETECTED_OS),Linux) -HOST_BINARY=linux -else -HOST_BINARY=winsrc -endif - -all clean: %: bootrom/% armsrc/% $(HOST_BINARY)/% +all clean: %: bootrom/% armsrc/% client/% bootrom/%: FORCE $(MAKE) -C bootrom $(patsubst bootrom/%,%,$@) armsrc/%: FORCE $(MAKE) -C armsrc $(patsubst armsrc/%,%,$@) -linux/%: FORCE - $(MAKE) -C linux $(patsubst linux/%,%,$@) -winsrc/%: FORCE - $(MAKE) -C winsrc $(patsubst winsrc/%,%,$@) +client/%: FORCE + $(MAKE) -C client $(patsubst client/%,%,$@) FORCE: # Dummy target to force remake in the subdirectories, even if files exist (this Makefile doesn't know about the prerequisites)