2022-01-06 02:19:46 +01:00
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
|
# Copyright (C) Jonathan Westhues, Mar 2006
|
|
|
|
|
# Copyright (C) Proxmark3 contributors. See AUTHORS.md for details.
|
|
|
|
|
#
|
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
# (at your option) any later version.
|
|
|
|
|
#
|
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
#
|
|
|
|
|
# See LICENSE.txt for the text of the license.
|
2010-02-21 00:12:52 +00:00
|
|
|
#-----------------------------------------------------------------------------
|
2019-08-08 16:57:33 +02:00
|
|
|
# Makefile for armsrc, see ../common_arm/Makefile.common for common settings
|
2010-02-21 00:12:52 +00:00
|
|
|
#-----------------------------------------------------------------------------
|
2010-02-20 21:24:25 +00:00
|
|
|
|
2019-03-11 00:21:14 +01:00
|
|
|
# This Makefile might have been called directly, not via the root Makefile, so:
|
|
|
|
|
ifeq ($(PLTNAME),)
|
2019-05-06 20:45:59 +02:00
|
|
|
-include ../Makefile.platform
|
2019-06-01 01:37:02 +02:00
|
|
|
-include ../.Makefile.options.cache
|
2019-08-08 16:57:33 +02:00
|
|
|
include ../common_arm/Makefile.hal
|
2019-06-01 01:37:02 +02:00
|
|
|
# detect if there were changes in the platform definitions, requiring a clean
|
2019-06-01 22:49:28 +02:00
|
|
|
ifeq ($(PLATFORM_CHANGED), true)
|
|
|
|
|
$(error platform definitions have been changed, please "make clean" at the root of the project)
|
|
|
|
|
endif
|
2019-03-11 00:21:14 +01:00
|
|
|
endif
|
|
|
|
|
|
2010-02-20 21:24:25 +00:00
|
|
|
#remove one of the following defines and comment out the relevant line
|
2017-02-13 15:32:48 +01:00
|
|
|
#in the next section to remove that particular feature from compilation.
|
2019-03-10 11:35:03 +01:00
|
|
|
# NO space,TABs after the "\" sign.
|
2026-04-28 12:26:09 +02:00
|
|
|
APP_CFLAGS = $(PLATFORM_DEFS)
|
2017-10-11 12:48:37 +02:00
|
|
|
|
2020-01-14 22:08:43 +01:00
|
|
|
SRC_LF = lfops.c lfsampling.c pcf7931.c lfdemod.c lfadc.c
|
2022-06-25 00:36:42 +03:00
|
|
|
SRC_HF = hfops.c
|
2015-02-18 20:02:44 +01:00
|
|
|
SRC_ISO15693 = iso15693.c iso15693tools.c
|
2026-05-11 13:54:49 +08:00
|
|
|
SRC_ISO14443a = iso14443a.c secc.c mifareutil.c mifarecmd.c epa.c mifaresim.c sam_common.c sam_mfc.c sam_seos.c sam_sc.c
|
2025-01-14 16:26:35 +01:00
|
|
|
|
2020-04-12 17:39:11 +02:00
|
|
|
#UNUSED: mifaresniff.c
|
2015-06-02 12:17:34 +02:00
|
|
|
SRC_ISO14443b = iso14443b.c
|
2017-10-20 20:27:44 +02:00
|
|
|
SRC_FELICA = felica.c
|
2020-04-12 17:39:11 +02:00
|
|
|
SRC_CRAPTO1 = crypto1.c des.c desfire_crypto.c mifaredesfire.c aes.c platform_util.c
|
2019-03-10 11:35:03 +01:00
|
|
|
SRC_CRC = crc.c crc16.c crc32.c
|
2023-10-18 19:59:34 +02:00
|
|
|
SRC_ICLASS = iclass.c optimized_cipherutils.c optimized_ikeys.c optimized_elite.c optimized_cipher.c sam_picopass.c
|
2025-12-21 04:26:44 -07:00
|
|
|
SRC_SEOS = seos.c sha1.c sha256.c
|
2018-09-05 22:23:25 +02:00
|
|
|
SRC_LEGIC = legicrf.c legicrfsim.c legic_prng.c
|
2019-08-03 21:17:52 +02:00
|
|
|
SRC_NFCBARCODE = thinfilm.c
|
2019-08-01 00:51:53 -04:00
|
|
|
|
2019-04-07 10:58:50 +02:00
|
|
|
# SRC_BEE = bee.c
|
2010-02-20 21:24:25 +00:00
|
|
|
|
2018-09-05 20:34:28 +02:00
|
|
|
# RDV40 related hardware support
|
|
|
|
|
ifneq (,$(findstring WITH_FLASH,$(APP_CFLAGS)))
|
2019-05-06 20:45:59 +02:00
|
|
|
SRC_FLASH = flashmem.c
|
2019-08-01 00:51:53 -04:00
|
|
|
SRC_SPIFFS = spiffs.c spiffs_cache.c spiffs_check.c spiffs_gc.c spiffs_nucleus.c spiffs_hydrogen.c
|
2018-09-05 20:34:28 +02:00
|
|
|
else
|
2019-05-06 20:45:59 +02:00
|
|
|
SRC_FLASH =
|
2019-08-01 00:51:53 -04:00
|
|
|
SRC_SPIFFS =
|
2018-09-05 20:34:28 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
ifneq (,$(findstring WITH_SMARTCARD,$(APP_CFLAGS)))
|
2025-01-14 21:40:14 +01:00
|
|
|
SRC_SMARTCARD = i2c.c i2c_direct.c emvsim.c
|
2018-09-05 20:34:28 +02:00
|
|
|
else
|
2019-05-06 20:45:59 +02:00
|
|
|
SRC_SMARTCARD =
|
2018-09-05 20:34:28 +02:00
|
|
|
endif
|
|
|
|
|
|
2019-05-03 22:30:17 +02:00
|
|
|
ifneq (,$(findstring WITH_FPC_USART,$(APP_CFLAGS)))
|
2019-05-06 20:45:59 +02:00
|
|
|
SRC_FPC = usart.c
|
2018-09-05 20:34:28 +02:00
|
|
|
else
|
2019-05-06 20:45:59 +02:00
|
|
|
SRC_FPC =
|
2018-09-05 20:34:28 +02:00
|
|
|
endif
|
|
|
|
|
|
2019-04-25 21:21:53 +02:00
|
|
|
ifneq (,$(findstring WITH_HITAG,$(APP_CFLAGS)))
|
2025-03-15 04:17:47 +08:00
|
|
|
SRC_HITAG = hitag2_crypto.c hitag_common.c hitag2.c hitagS.c hitagu.c hitag2_crack.c
|
2024-03-27 09:32:00 +01:00
|
|
|
APP_CFLAGS += -I../common/hitag2
|
2019-04-19 09:23:24 +02:00
|
|
|
else
|
|
|
|
|
SRC_HITAG =
|
|
|
|
|
endif
|
|
|
|
|
|
2020-06-15 14:32:23 +02:00
|
|
|
ifneq (,$(findstring WITH_EM4x50,$(APP_CFLAGS)))
|
2023-05-08 17:20:35 +00:00
|
|
|
SRC_EM4x50 = em4x50.c bruteforce.c
|
2020-06-15 14:32:23 +02:00
|
|
|
else
|
|
|
|
|
SRC_EM4x50 =
|
|
|
|
|
endif
|
|
|
|
|
|
2020-12-05 17:47:03 -05:00
|
|
|
ifneq (,$(findstring WITH_EM4x70,$(APP_CFLAGS)))
|
|
|
|
|
SRC_EM4x70 = em4x70.c
|
|
|
|
|
else
|
|
|
|
|
SRC_EM4x70 =
|
|
|
|
|
endif
|
|
|
|
|
|
2019-04-25 21:21:53 +02:00
|
|
|
ifneq (,$(findstring WITH_LCD,$(APP_CFLAGS)))
|
2019-03-25 15:11:38 +01:00
|
|
|
SRC_LCD = fonts.c LCD.c
|
|
|
|
|
else
|
|
|
|
|
SRC_LCD =
|
|
|
|
|
endif
|
|
|
|
|
|
2021-12-24 13:32:28 +01:00
|
|
|
ifneq (,$(findstring WITH_ZX8211,$(APP_CFLAGS)))
|
2021-12-24 15:06:38 +01:00
|
|
|
SRC_ZX = lfzx.c
|
2021-12-24 13:32:28 +01:00
|
|
|
else
|
|
|
|
|
SRC_ZX =
|
|
|
|
|
endif
|
|
|
|
|
|
2018-09-05 20:34:28 +02:00
|
|
|
# Generic standalone Mode injection of source code
|
2019-07-16 19:18:45 +02:00
|
|
|
include Standalone/Makefile.inc
|
2018-09-05 20:34:28 +02:00
|
|
|
|
2020-06-05 16:24:05 +02:00
|
|
|
#the lz4 source files required for decompressing the fpga config at run time
|
|
|
|
|
SRC_LZ4 = lz4.c
|
|
|
|
|
#additional defines required to compile lz4
|
2026-04-28 12:28:52 +02:00
|
|
|
LZ4_CFLAGS = -DLZ4_MEMORY_USAGE=8 -DLZ4_HEAPMODE=0
|
2020-06-05 16:24:05 +02:00
|
|
|
APP_CFLAGS += $(LZ4_CFLAGS)
|
|
|
|
|
# lz4 includes:
|
|
|
|
|
APP_CFLAGS += -I../common/lz4
|
2015-06-25 12:22:34 +02:00
|
|
|
|
2019-01-05 20:59:00 +01:00
|
|
|
# stdint.h provided locally until GCC 4.5 becomes C99 compliant,
|
2026-04-28 12:26:09 +02:00
|
|
|
APP_CFLAGS += -I.
|
2015-06-25 12:22:34 +02:00
|
|
|
|
|
|
|
|
# Compile these in thumb mode (small size)
|
2010-02-20 21:24:25 +00:00
|
|
|
THUMBSRC = start.c \
|
2019-05-06 20:45:59 +02:00
|
|
|
$(SRC_LCD) \
|
|
|
|
|
$(SRC_ISO15693) \
|
2019-08-03 22:28:58 +02:00
|
|
|
$(SRC_NFCBARCODE) \
|
2019-05-06 20:45:59 +02:00
|
|
|
$(SRC_LF) \
|
2020-06-05 16:24:05 +02:00
|
|
|
$(SRC_LZ4) \
|
2019-05-06 20:45:59 +02:00
|
|
|
$(SRC_LEGIC) \
|
|
|
|
|
$(SRC_FLASH) \
|
|
|
|
|
$(SRC_SMARTCARD) \
|
|
|
|
|
$(SRC_FPC) \
|
2019-04-19 09:23:24 +02:00
|
|
|
$(SRC_HITAG) \
|
2023-08-03 13:02:42 +02:00
|
|
|
$(SRC_EM4x50) \
|
2020-12-05 17:47:03 -05:00
|
|
|
$(SRC_EM4x70) \
|
2019-07-22 22:56:06 +02:00
|
|
|
$(SRC_SPIFFS) \
|
2022-06-25 00:36:42 +03:00
|
|
|
$(SRC_HF) \
|
2020-06-07 17:29:25 +02:00
|
|
|
$(SRC_ISO14443a) \
|
|
|
|
|
$(SRC_ISO14443b) \
|
|
|
|
|
$(SRC_CRAPTO1) \
|
|
|
|
|
$(SRC_ICLASS) \
|
2025-12-21 04:26:44 -07:00
|
|
|
$(SRC_SEOS) \
|
2020-06-07 17:29:25 +02:00
|
|
|
$(SRC_EMV) \
|
|
|
|
|
$(SRC_CRC) \
|
|
|
|
|
$(SRC_FELICA) \
|
|
|
|
|
$(SRC_STANDALONE) \
|
2021-12-24 13:32:28 +01:00
|
|
|
$(SRC_ZX) \
|
2019-05-06 20:45:59 +02:00
|
|
|
appmain.c \
|
|
|
|
|
printf.c \
|
2019-08-08 16:57:33 +02:00
|
|
|
dbprint.c \
|
2019-05-06 20:45:59 +02:00
|
|
|
commonutil.c \
|
|
|
|
|
util.c \
|
|
|
|
|
string.c \
|
|
|
|
|
BigBuf.c \
|
|
|
|
|
ticks.c \
|
2019-10-15 14:21:26 +02:00
|
|
|
clocks.c \
|
2022-07-30 10:03:51 +02:00
|
|
|
hfsnoop.c \
|
2025-10-17 13:31:19 +02:00
|
|
|
generator.c \
|
2025-12-20 21:48:19 -07:00
|
|
|
cmac_calc.c \
|
|
|
|
|
cmac_3des.c
|
2010-02-20 21:24:25 +00:00
|
|
|
|
2017-08-26 12:57:18 +02:00
|
|
|
|
2010-02-20 21:24:25 +00:00
|
|
|
# These are to be compiled in ARM mode
|
|
|
|
|
ARMSRC = fpgaloader.c \
|
2019-05-06 20:45:59 +02:00
|
|
|
usb_cdc.c \
|
|
|
|
|
cmd.c
|
2019-03-10 11:35:03 +01:00
|
|
|
|
2021-05-21 00:15:20 +02:00
|
|
|
VERSIONSRC = version_pm3.c \
|
2019-05-06 20:45:59 +02:00
|
|
|
fpga_version_info.c
|
2019-03-10 11:35:03 +01:00
|
|
|
|
2010-02-20 21:24:25 +00:00
|
|
|
# Do not move this inclusion before the definition of {THUMB,ASM,ARM}SRC
|
2019-08-08 16:57:33 +02:00
|
|
|
include ../common_arm/Makefile.common
|
2010-02-20 21:24:25 +00:00
|
|
|
|
2019-08-30 21:55:13 +02:00
|
|
|
INSTALLFW = $(OBJDIR)/fullimage.elf
|
2019-08-31 00:26:35 +02:00
|
|
|
ifneq (,$(FWTAG))
|
|
|
|
|
INSTALLFWTAG = $(notdir $(INSTALLFW:%.elf=%-$(FWTAG).elf))
|
|
|
|
|
else
|
|
|
|
|
INSTALLFWTAG = $(notdir $(INSTALLFW))
|
|
|
|
|
endif
|
|
|
|
|
|
2019-03-10 11:35:03 +01:00
|
|
|
OBJS = $(OBJDIR)/fullimage.s19
|
2019-08-09 14:41:44 +02:00
|
|
|
FPGA_COMPRESSOR = ../tools/fpga_compress/fpga_compress
|
2010-05-09 12:17:42 +00:00
|
|
|
|
2020-05-11 10:21:32 +02:00
|
|
|
all: showinfo $(OBJS)
|
|
|
|
|
|
|
|
|
|
showinfo:
|
2021-09-21 13:50:01 +02:00
|
|
|
$(info compiler version: $(shell $(CROSS_CC) --version|head -n 1))
|
2010-02-20 21:24:25 +00:00
|
|
|
|
2015-06-25 12:29:41 +02:00
|
|
|
.DELETE_ON_ERROR:
|
|
|
|
|
|
2023-08-03 00:42:08 +02:00
|
|
|
# version_pm3.c should be checked on every time fullimage.stage1.elf should be remade
|
2023-01-09 00:57:28 +10:00
|
|
|
version_pm3.c: default_version_pm3.c $(OBJDIR)/fpga_version_info.o $(OBJDIR)/fpga_all.o $(THUMBOBJ) $(ARMOBJ) .FORCE
|
2023-08-03 00:42:08 +02:00
|
|
|
$(info [-] CHECK $@)
|
2026-04-14 10:19:30 +02:00
|
|
|
$(Q)$(SH) ../tools/mkversion.sh $@ || $(CP) $< $@
|
2018-07-28 14:25:12 +02:00
|
|
|
|
2020-05-19 17:43:13 +02:00
|
|
|
fpga_version_info.c: $(FPGA_BITSTREAMS) $(FPGA_COMPRESSOR)
|
2019-06-02 00:25:25 +02:00
|
|
|
$(info [-] GEN $@)
|
|
|
|
|
$(Q)$(FPGA_COMPRESSOR) -v $(filter %.bit,$^) $@
|
2018-07-28 14:25:12 +02:00
|
|
|
|
2015-06-25 12:22:34 +02:00
|
|
|
$(OBJDIR)/fpga_all.o: $(OBJDIR)/fpga_all.bit.z
|
2019-06-02 00:25:25 +02:00
|
|
|
$(info [-] GEN $@)
|
2021-09-21 13:50:01 +02:00
|
|
|
$(Q)$(CROSS_OBJCOPY) -O elf32-littlearm -I binary -B arm --prefix-sections=fpga_all_bit $^ $@
|
2010-02-20 21:24:25 +00:00
|
|
|
|
2019-08-04 21:33:57 +02:00
|
|
|
$(OBJDIR)/fpga_all.bit.z: $(FPGA_BITSTREAMS) | $(FPGA_COMPRESSOR)
|
2019-06-02 00:25:25 +02:00
|
|
|
$(info [-] GEN $@)
|
2019-06-02 16:23:57 +02:00
|
|
|
ifeq ($(Q),@)
|
|
|
|
|
@$(FPGA_COMPRESSOR) $(filter %.bit,$^) $@ >/dev/null
|
|
|
|
|
else
|
|
|
|
|
$(FPGA_COMPRESSOR) $(filter %.bit,$^) $@
|
|
|
|
|
endif
|
2014-06-20 01:02:59 +02:00
|
|
|
|
2015-06-25 12:22:34 +02:00
|
|
|
$(FPGA_COMPRESSOR):
|
2019-08-09 14:41:44 +02:00
|
|
|
$(error [!] MISSING $@ => To build it, go the root of the repo and do "make $(notdir $@)")
|
|
|
|
|
$(error [!] MISSING $@)
|
2019-03-10 11:35:03 +01:00
|
|
|
|
2015-06-25 12:22:34 +02:00
|
|
|
$(OBJDIR)/fullimage.stage1.elf: $(VERSIONOBJ) $(OBJDIR)/fpga_all.o $(THUMBOBJ) $(ARMOBJ)
|
2019-06-02 00:25:25 +02:00
|
|
|
$(info [=] LD $@)
|
2026-04-28 12:15:20 +02:00
|
|
|
# Using -T instead of -Wl,-T is needed to prevent the linker from using the default ldscript when using picolibc instead of newlib
|
|
|
|
|
$(Q)$(CROSS_LD) $(CROSS_LDFLAGS) -T ldscript -Wl,-Map,$(patsubst %.elf,%.map,$@) -o $@ $^ $(LIBS)
|
2010-02-20 21:24:25 +00:00
|
|
|
|
2015-06-25 12:22:34 +02:00
|
|
|
$(OBJDIR)/fullimage.data.bin: $(OBJDIR)/fullimage.stage1.elf
|
2019-06-02 00:25:25 +02:00
|
|
|
$(info [-] GEN $@)
|
2021-09-21 13:50:01 +02:00
|
|
|
$(Q)$(CROSS_OBJCOPY) -O binary -I elf32-littlearm --only-section .data $^ $@
|
2015-06-25 12:22:34 +02:00
|
|
|
|
2019-08-04 21:33:57 +02:00
|
|
|
$(OBJDIR)/fullimage.data.bin.z: $(OBJDIR)/fullimage.data.bin | $(FPGA_COMPRESSOR)
|
2019-06-02 00:25:25 +02:00
|
|
|
$(info [-] GEN $@)
|
2019-06-02 16:23:57 +02:00
|
|
|
ifeq ($(Q),@)
|
|
|
|
|
@$(FPGA_COMPRESSOR) $(filter %.bin,$^) $@ >/dev/null
|
|
|
|
|
else
|
|
|
|
|
$(FPGA_COMPRESSOR) $(filter %.bin,$^) $@
|
|
|
|
|
endif
|
2019-03-10 11:35:03 +01:00
|
|
|
|
2022-02-15 03:08:13 +01:00
|
|
|
$(OBJDIR)/fullimage.elf: $(OBJDIR)/fullimage.stage1.elf $(OBJDIR)/fullimage.data.bin.z
|
2024-08-30 23:45:39 +08:00
|
|
|
ifneq (,$(findstring WITH_COMPRESSION,$(APP_CFLAGS)))
|
2019-06-02 00:25:25 +02:00
|
|
|
$(info [=] LD $@)
|
2022-02-15 03:08:13 +01:00
|
|
|
$(Q)$(CROSS_OBJCOPY) -O elf32-littlearm -I elf32-littlearm --strip-all --update-section .data=$(OBJDIR)/fullimage.data.bin.z $(OBJDIR)/fullimage.stage1.elf $@
|
2020-12-28 22:48:41 +01:00
|
|
|
else
|
|
|
|
|
$(Q)$(CP) $(OBJDIR)/fullimage.stage1.elf $@
|
|
|
|
|
endif
|
2010-02-20 21:24:25 +00:00
|
|
|
|
2010-05-09 12:17:42 +00:00
|
|
|
tarbin: $(OBJS)
|
2019-06-02 00:25:25 +02:00
|
|
|
$(info TAR $@)
|
|
|
|
|
$(Q)$(TAR) $(TARFLAGS) ../proxmark3-$(platform)-bin.tar $(OBJS:%=armsrc/%) $(OBJS:%.s19=armsrc/%.elf)
|
2010-05-09 12:17:42 +00:00
|
|
|
|
2010-02-20 21:24:25 +00:00
|
|
|
clean:
|
2019-08-30 21:55:13 +02:00
|
|
|
$(Q)$(RM) $(DEPENDENCY_FILES)
|
|
|
|
|
$(Q)$(RM) $(OBJDIR)$(PATHSEP)*.o
|
|
|
|
|
$(Q)$(RM) $(OBJDIR)$(PATHSEP)*.elf
|
|
|
|
|
$(Q)$(RM) $(OBJDIR)$(PATHSEP)*.s19
|
|
|
|
|
$(Q)$(RM) $(OBJDIR)$(PATHSEP)*.map
|
|
|
|
|
$(Q)$(RM) $(OBJDIR)$(PATHSEP)*.d
|
|
|
|
|
$(Q)$(RM) $(OBJDIR)$(PATHSEP)*.z
|
|
|
|
|
$(Q)$(RM) $(OBJDIR)$(PATHSEP)*.bin
|
2021-05-23 02:37:17 +02:00
|
|
|
$(Q)$(RM) version_pm3.c version.c fpga_version_info.c
|
2010-02-20 21:24:25 +00:00
|
|
|
|
2019-08-30 21:44:40 +02:00
|
|
|
install: all
|
2019-08-30 21:55:13 +02:00
|
|
|
$(info [@] Installing fullimage to $(DESTDIR)$(PREFIX)...)
|
2022-05-03 19:04:01 +02:00
|
|
|
$(Q)$(INSTALLSUDO) $(MKDIR) $(DESTDIR)$(PREFIX)$(PATHSEP)$(INSTALLFWRELPATH)
|
|
|
|
|
$(Q)$(INSTALLSUDO) $(CP) $(INSTALLFW) $(DESTDIR)$(PREFIX)$(PATHSEP)$(INSTALLFWRELPATH)$(PATHSEP)$(INSTALLFWTAG)
|
2019-08-30 21:44:40 +02:00
|
|
|
|
|
|
|
|
uninstall:
|
2019-08-30 21:55:13 +02:00
|
|
|
$(info [@] Uninstalling fullimage from $(DESTDIR)$(PREFIX)...)
|
2022-05-03 19:04:01 +02:00
|
|
|
$(Q)$(INSTALLSUDO) $(RM) $(DESTDIR)$(PREFIX)$(PATHSEP)$(INSTALLFWRELPATH)$(PATHSEP)$(INSTALLFWTAG)
|
2019-08-30 21:44:40 +02:00
|
|
|
|
2023-01-09 00:57:28 +10:00
|
|
|
.PHONY: all clean help install uninstall .FORCE
|
2010-02-20 21:24:25 +00:00
|
|
|
help:
|
|
|
|
|
@echo Multi-OS Makefile, you are running on $(DETECTED_OS)
|
|
|
|
|
@echo Possible targets:
|
2015-06-25 12:22:34 +02:00
|
|
|
@echo + all - Build the full image $(OBJDIR)/fullimage.s19
|
2018-03-10 13:13:21 +01:00
|
|
|
@echo + clean - Clean $(OBJDIR)
|
2019-08-08 16:57:33 +02:00
|
|
|
|