summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..4472737
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,20 @@
+CC=gcc
+CFLAGS=-O3 -march=native -pipe
+
+OBJ = main.o
+
+%.o: %.c $(DEPS)
+ $(CC) -c -o $@ $< $(CFLAGS)
+
+d2hex: $(OBJ)
+ $(CC) -o $@ $^ $(CFLAGS)
+
+clean:
+ rm d2hex
+ rm main.o
+
+install: d2hex
+ sudo cp d2hex /usr/bin/
+remove:
+ sudo rm /usr/bin/d2hex
+