aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDavid Phillips <dbphillipsnz@gmail.com>2016-03-08 23:30:50 +1300
committerDavid Phillips <dbphillipsnz@gmail.com>2016-03-08 23:30:50 +1300
commit7939a09d45fd7ac9e5776e6a88010f4d112e168d (patch)
treeda1254f6d11061ef1483145a634717eea2b2309b /Makefile
parent1619c76f590c430622247ea8fe7b6efad44ff347 (diff)
downloadcue-bin-split-7939a09d45fd7ac9e5776e6a88010f4d112e168d.tar.xz
Remove (useless) config.mk
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 1 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 70a9493..004e9be 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,3 @@
-# Makefile for cue-bin-split
-
-.POSIX:
-include config.mk
-
OBJECTS = \
cue-bin-split.o \
misc.o
@@ -13,7 +8,7 @@ CFLAGS += -Wall -Werror
all: cue-bin-split
cue-bin-split: $(OBJECTS)
- $(CC) -o $(EXEC_NAME) $^ $(LDFLAGS)
+ $(CC) -o $@ $^ $(LDFLAGS)
%.o: %.c %.h
$(CC) -c -o $@ $< $(CFLAGS)