Revision 8c453ec29bd697143c633a3fdda74b279445b180 authored by dannephoto on 18 July 2017, 09:48:56 UTC, committed by dannephoto on 18 July 2017, 09:48:56 UTC
1 parent 1072f23
Raw File
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