aboutsummaryrefslogtreecommitdiffstats
path: root/tools/file2c/source/Makefile
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2013-04-04 02:01:07 +0200
committerJoel Bodenmann <joel@unormal.org>2013-04-04 02:01:07 +0200
commita900ab610c7ed54e52ae0d618f177817c54be77e (patch)
treeaca2bbf3ce1b01ecabe4593621ffd24728e3718c /tools/file2c/source/Makefile
parent8b21c08096bf2333e613cb25a90eb59dd075fbf4 (diff)
downloaduGFX-a900ab610c7ed54e52ae0d618f177817c54be77e.tar.gz
uGFX-a900ab610c7ed54e52ae0d618f177817c54be77e.tar.bz2
uGFX-a900ab610c7ed54e52ae0d618f177817c54be77e.zip
file2c tool cleanup
Diffstat (limited to 'tools/file2c/source/Makefile')
-rw-r--r--tools/file2c/source/Makefile15
1 files changed, 0 insertions, 15 deletions
diff --git a/tools/file2c/source/Makefile b/tools/file2c/source/Makefile
deleted file mode 100644
index a6a7041c..00000000
--- a/tools/file2c/source/Makefile
+++ /dev/null
@@ -1,15 +0,0 @@
-TARGET = file2c
-SRCS = $(shell find -name '*.c')
-OBJS = $(addsuffix .o,$(basename $(SRCS)))
-
-CFLAGS = -Wall -p
-
-CC = /usr/bin/gcc
-RM = /bin/rm -f
-
-all: clean
- $(CC) $(CFLAGS) -o $(TARGET) $(SRCS)
-
-clean:
- $(RM) $(TARGET) $(OBJS)
-