summaryrefslogtreecommitdiff
blob: 16d86a036d40f3acc09852bdb87c00a6cb84c1c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
--- Makefile
+++ Makefile
@@ -4,10 +4,8 @@
 CC        = cc
 RM        = rm -f
 
-CFLAGS    += -I$(XROOT)/include # remove the + for this and the next line if make complains about being unable to add to a non-existing macro
-LDFLAGS   += -lX11 -L$(XROOT)/lib
 CFLAGS    += -DSHAPE # comment out this line to disable shape support
-LDFLAGS   += -lXext # if shape support is disabled, this normally is no longer necessary and schould probally be commented out too
+LIBS      += -lXext -lX11 # if shape support is disabled, this normally is no longer necessary and schould probally be commented out too
 
 #CFLAGS    += -DDEBUG -ggdb3 # -DDEBUG_EVENTS -DSYNC # for debugging
 CFLAGS    += -Wall -Wextra -Wno-unused-parameter
@@ -19,7 +17,7 @@
 all: matwm2
 
 matwm2: $(OBJFILES) $(HEADERS)
-	$(CC) -o $@ $(OBJFILES) $(LDFLAGS)
+	$(CC) $(LDFLAGS) -o $@ $(OBJFILES) $(LIBS)
 
 clean:
 	$(RM) matwm2 *.o