aboutsummaryrefslogtreecommitdiff
path: root/util/romcc/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'util/romcc/Makefile')
-rw-r--r--util/romcc/Makefile30
1 files changed, 0 insertions, 30 deletions
diff --git a/util/romcc/Makefile b/util/romcc/Makefile
deleted file mode 100644
index 2c5f174cf2..0000000000
--- a/util/romcc/Makefile
+++ /dev/null
@@ -1,30 +0,0 @@
-CC=gcc
-CPPFLAGS=
-CFLAGS= -g -Wall -Werror $(CPPFLAGS)
-CPROF_FLAGS=-pg -fprofile-arcs
-BUILD_DIR=build
-
-default: $(BUILD_DIR)/romcc
-
-$(BUILD_DIR)/romcc: romcc.c $(BUILD_DIR)
- $(CC) $(CFLAGS) -o $@ $<
-
-$(BUILD_DIR)/romcc_pg: romcc.c $(BUILD_DIR)
- $(CC) $(CFLAGS) $(CPROF_FLAGS) -o $@ $<
-
-$(BUILD_DIR):
- mkdir -p $(BUILD_DIR)
-
-test: $(BUILD_DIR)/romcc
- ./test.sh all
-
-test-simple: $(BUILD_DIR)/romcc
- ./test.sh simple
-
-test-linux: $(BUILD_DIR)/romcc
- ./test.sh linux
-
-clean distclean:
- rm -rf $(BUILD_DIR)
-
-.PHONY: all test test-simple test-linux clean distclean