summaryrefslogtreecommitdiff
path: root/Makefile
blob: 0d7e393aedbde2090f7e6602b3d27877e3f821d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Where to install the ratpoison executable
INSTALL_DIR=/usr/local/bin


# Spew lots of debug messages 
DEBUG = -DDEBUG

CC = gcc
LIBS = -lX11
LDFLAGS = -L/usr/X11R6/lib
CFLAGS = -g -Wall -I/usr/X11R6/include 

SRC = main.o events.o manage.o list.o bar.o
HEADERS = bar.h conf.h data.h events.h list.h manage.h ratpoison.h

ratpoison: $(SRC)
	gcc $(SRC) -o $@ $(CFLAGS) $(LDFLAGS) $(LIBS) 

install: ratpoison
	cp ratpoison $(INSTALL_DIR)

%.o : %.c $(HEADERS)
	$(CC) -c $(CFLAGS) $(DEBUG) $< -o $@

clean :
	rm -f *.o ratpoison