summaryrefslogtreecommitdiff
path: root/new/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'new/makefile')
-rw-r--r--new/makefile22
1 files changed, 22 insertions, 0 deletions
diff --git a/new/makefile b/new/makefile
new file mode 100644
index 000000000..d60a6d685
--- /dev/null
+++ b/new/makefile
@@ -0,0 +1,22 @@
+# Define required macros here
+
+SHELL = /bin/sh
+
+SRC = hash_to_file.c bitmap.c murmur3.c
+OBJS = $(src:.c=.o)
+
+CFLAGS = -Wall -g
+CC = gcc
+INCLUDE = -I /usr/local/include/freetype2/
+LIBS = -lfreetype
+
+DPI = 72
+
+hash:$(SRC)
+ $(CC) $(CFLAGS) $(INCLUDE) -DDPI=$(DPI) -o $@ $(SRC) $(OBJS) $(LIBS)
+
+.PHONY: clean
+clean:
+ -rm -f *.o
+
+