summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorQuentin Rameau <quinq@fifth.space>2018-04-30 16:11:45 +0200
committerAaron Marcher <me@drkhsh.at>2018-04-30 16:27:07 +0200
commit95665e437b8f556db4d5499e189e224e3c6e6a12 (patch)
treeb38d198a99c908f42a91c722b8e8ef87cafd65d5 /Makefile
parent085431b2826ff345c6f8580a72f3fff6f8138785 (diff)
Makefile: separate default flags from user flags
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 7d80893..a2c49c8 100644
--- a/Makefile
+++ b/Makefile
@@ -27,6 +27,10 @@ COM =\
components/volume\
components/$(OS)/wifi
+SLSCFLAGS = -I$(X11INC) -D_DEFAULT_SOURCE $(CFLAGS)
+SLSLDFLAGS = -L$(X11LIB) $(LDFLAGS)
+SLSLIBS = -lX11 $(OSSLIBS) $(LIBS)
+
all: slstatus
slstatus: slstatus.o $(COM:=.o) $(REQ:=.o)
@@ -37,10 +41,10 @@ config.h:
cp config.def.h $@
.o:
- $(CC) -o $@ $(LDFLAGS) $< $(COM:=.o) $(REQ:=.o) $(LDLIBS)
+ $(CC) -o $@ $(SLSLDFLAGS) $< $(COM:=.o) $(REQ:=.o) $(SLSLIBS)
.c.o:
- $(CC) -o $@ -c $(CPPFLAGS) $(CFLAGS) $<
+ $(CC) -o $@ -c $(SLSCFLAGS) $<
clean:
rm -f slstatus slstatus.o $(COM:=.o) $(REQ:=.o)