fixed bugs, added progress bar, and more
[dosdemo] / tools / img2bin / Makefile
diff --git a/tools/img2bin/Makefile b/tools/img2bin/Makefile
new file mode 100644 (file)
index 0000000..c9423c3
--- /dev/null
@@ -0,0 +1,14 @@
+obj = img2bin.o
+bin = img2bin
+
+root = ../..
+
+CFLAGS = -pedantic -Wall -g -I$(root)/libs/imago/src
+LDFLAGS = -L$(root)/libs/imago -limago
+
+$(bin): $(obj)
+       $(CC) -o $@ $(obj) $(LDFLAGS)
+
+.PHONY: clean
+clean:
+       rm -f $(obj) $(bin)