diff options
Diffstat (limited to 'util/archive/Makefile')
-rw-r--r-- | util/archive/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/util/archive/Makefile b/util/archive/Makefile new file mode 100644 index 0000000000..a592a627fa --- /dev/null +++ b/util/archive/Makefile @@ -0,0 +1,14 @@ +PROGRAM = archive +CC ?= gcc + +SRCS = $(PROGRAM).c + +all: $(PROGRAM) + +$(PROGRAM): $(SRCS) + $(CC) -o $@ $^ + +clean: + rm -f $(PROGRAM) *.o + +.PHONY: all clean |