From 6cdcd740ff956813cb444f2096abc414b624fd37 Mon Sep 17 00:00:00 2001 From: David Phillips Date: Fri, 3 Jul 2015 16:18:00 +1200 Subject: Added config.mk --- Makefile | 26 +++++++++++++++++++++++--- 1 file changed, 23 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 4433bf4..66dab1d 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,25 @@ -CFLAGS += -Wall +# Makefile for cue-bin-split -all: split +.POSIX: +include config.mk -split: split.c +OBJECTS = cue-bin-split.o +CFLAGS += -Wall -Werror + + +all: cue-bin-split + +cue-bin-split: $(OBJECTS) + $(CC) -o $(EXEC_NAME) $< $(LDFLAGS) + +%.o: %.c + $(CC) -c -o $@ $< $(CFLAGS) + + +clean: + rm -f cue-bin-split + +distclean: clean + rm -f *.o + +.PHONY: all clean -- cgit v1.1