commit e7dbba8aa107ecd08f16d4e6cb32265c5c2e6e58 parent 62b55300cfa6e9477329f71d20f7995e94fc88f1 Author: Brian Swetland <swetland@frotz.net> Date: Sun, 15 Dec 2013 23:09:59 -0800 simple makefile Diffstat:
A | Makefile | | | 9 | +++++++++ |
1 file changed, 9 insertions(+), 0 deletions(-)
diff --git a/Makefile b/Makefile @@ -0,0 +1,9 @@ + +CFLAGS := -O2 -Wall +SRCS := gpttool.c + +gpttool: $(SRCS) + $(CC) $(CFLAGS) -o gpttool $(SRCS) -lz + +clean: + rm -f gpttool