aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 170fc56..77fe712 100644
--- a/Makefile
+++ b/Makefile
@@ -9,10 +9,11 @@ PREFIX ?= /usr/local
BINDIR = $(PREFIX)/bin
# User configuration
--include config.mk
+CONFIG ?= ../config
+-include configs/$(CONFIG).mk
meh: $(OBJFILES)
- $(CC) $(LDFLAGS) -o $@ $(OBJFILES) $(LIBS)
+ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(OBJFILES) $(LIBS)
-include $(DEPFILES)