aboutsummaryrefslogtreecommitdiff
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
parent1619c76f590c430622247ea8fe7b6efad44ff347 (diff)
downloadcue-bin-split-7939a09d45fd7ac9e5776e6a88010f4d112e168d.tar.xz
Remove (useless) config.mk
-rw-r--r--Makefile7
-rw-r--r--config.mk2
2 files changed, 1 insertions, 8 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)
diff --git a/config.mk b/config.mk
deleted file mode 100644
index 821eee9..0000000
--- a/config.mk
+++ /dev/null
@@ -1,2 +0,0 @@
-# Name of executable to be created
-EXEC_NAME = cue-bin-split