https://bitbucket.org/daniel_fort/magic-lantern
Raw File
Tip revision: 6aa636e93ce10f3b5c4d35e5d5057391dee130e2 authored by danne on 09 January 2017, 22:56:39 UTC
bouncy ball update
Tip revision: 6aa636e
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