https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: 96e07b0966c9685a029e943620c4abba455067ec authored by alex@thinkpad on 01 May 2017, 00:13:23 UTC
mem.c: disabled double free assert (it still gets overwritten by some deallocators)
Tip revision: 96e07b0
Makefile
# Makefile for the various tools used in the build process

ifndef TOP_DIR
# if this is used as a standalone makefile, we need to include some additional stuff
TOP_DIR=..
include $(TOP_DIR)/Makefile.setup
endif

$(XOR_CHK): $(XOR_CHK).c
	$(call build,XOR_CHK,$(HOST_CC) $< -o $@)

clean::
	$(call rm_files, $(XOR_CHK) $(XOR_CHK).exe)
back to top