]> git.zerfleddert.de Git - proxmark3-svn/blame_incremental - Makefile
Remove unused code from hitag2.c
[proxmark3-svn] / Makefile
... / ...
CommitLineData
1include common/Makefile.common
2
3ifeq ($(DETECTED_OS),Linux)
4HOST_BINARY=linux
5else
6HOST_BINARY=winsrc
7endif
8
9all clean: %:
10 $(MAKE) -C bootrom $@
11 $(MAKE) -C armsrc $@
12 $(MAKE) -C $(HOST_BINARY) $@
13
14.PHONY: all clean help _test
15help:
16 @echo Multi-OS Makefile, you are running on $(DETECTED_OS)
17 @echo Possible targets:
18 @echo + all - Make bootrom, armsrc and the OS-specific host directory
19 @echo + clean - Clean in bootrom, armsrc and the OS-specific host directory
20
21# Dummy target to test for GNU make availability
22_test:
Impressum, Datenschutz