diff options
author | David Härdeman <david@hardeman.nu> | 2007-05-18 21:54:15 +0200 |
---|---|---|
committer | David Härdeman <david@hardeman.nu> | 2007-05-18 21:54:15 +0200 |
commit | 25d2bb605809d23b691ec88a138bf7da9c7ee20b (patch) | |
tree | 0da1b53a4859fe8060f19dbbceb407a1701eb877 /Makefile | |
parent | ce12a04ba0dc092ea15164004264845a87b758e7 (diff) |
Initial project checkin
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..43783e8 --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ +CC = gcc +CFLAGS = -g -Wall +LDFLAGS = +INCLUDES = +COMPILE = $(CC) $(INCLUDES) $(CFLAGS) +LINK = $(CC) $(CFLAGS) $(LDFLAGS) + +objects = utils.o metastore.o + +%.o: %.c + $(COMPILE) -o $@ -c $< + +metastore: $(objects) + $(LINK) -o $@ $^ + +clean: + rm -f *.o metastore +.PHONY: clean |