summaryrefslogtreecommitdiff
path: root/utils/debugNCG/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'utils/debugNCG/Makefile')
-rw-r--r--utils/debugNCG/Makefile19
1 files changed, 19 insertions, 0 deletions
diff --git a/utils/debugNCG/Makefile b/utils/debugNCG/Makefile
new file mode 100644
index 0000000000..0ea51a1e06
--- /dev/null
+++ b/utils/debugNCG/Makefile
@@ -0,0 +1,19 @@
+TOP=../..
+include $(TOP)/mk/boilerplate.mk
+
+INSTALL_PROGS += diff_gcc_nat
+
+SRC_HC_OPTS += -O
+OBJS = Diff_Gcc_Nat.o
+
+CLEAN_FILES += diff_gcc_nat
+
+all :: diff_gcc_nat
+
+diff_gcc_nat: Diff_Gcc_Nat.o
+ $(HC) -o $@ $(HC_OPTS) $(LD_OPTS) $(OBJS)
+
+CLEAN_FILES += diff_gcc_nat
+CLEAN_FILES += $(OBJS)
+
+include $(TOP)/mk/target.mk