X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=tools%2Fimg2bin%2FMakefile;fp=tools%2Fimg2bin%2FMakefile;h=c9423c3052a547dc893d2b85d1d62b489f1f1838;hb=7cffbf057545fb303ad8f53e432ef42f7708e16d;hp=0000000000000000000000000000000000000000;hpb=68f89fa06ae5cfacde9cf8310e97220e5fc05260;p=dosdemo diff --git a/tools/img2bin/Makefile b/tools/img2bin/Makefile new file mode 100644 index 0000000..c9423c3 --- /dev/null +++ b/tools/img2bin/Makefile @@ -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)