summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMC <mc@hack.org>2010-06-24 17:28:16 +0200
committerMC <mc@hack.org>2010-06-24 17:28:16 +0200
commitd6ed181eee6f2dd3439e0e6057c868c2d5d4a8d0 (patch)
treeccb10065d6a039f3371139906a518ca6f44e6903 /Makefile
parent9b89fb40a58caed77c53732eb440db936592a837 (diff)
downloadmcwm-d6ed181eee6f2dd3439e0e6057c868c2d5d4a8d0.zip
Added debug printouts for incoming events.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index c8833f9..cd92e2a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,18 +1,20 @@
VERSION=201000624-3
DIST=mcwm-$(VERSION)
-DISTFILES=LICENSE Makefile NEWS README TODO WISHLIST config.h mcwm.c
+DISTFILES=LICENSE Makefile NEWS README TODO WISHLIST config.h mcwm.c \
+ events.h
CC=gcc
CFLAGS=-g -std=c99 -Wall -I/usr/local/include -L/usr/local/lib -lxcb \
-lxcb-keysyms -lxcb-icccm -lxcb-atom #-DDEBUG
RM=/bin/rm
+PREFIX=/usr/local
TARGETS=mcwm
all: $(TARGETS)
-mcwm: mcwm.c config.h
+mcwm: mcwm.c config.h events.h Makefile
mcwm-static: mcwm.c config.h
$(CC) -o mcwm-static mcwm.c -static -g -std=c99 -Wall \