event stuff fixed, begin with directory parsing now
[my-code/dfb-photoshow.git] / Makefile
1 # Makefile of dfb-photoshow
2
3 INCLUDEDIR = /usr/include
4 DATADIR = /usr/share/DFBSee
5
6 CFLAGS = -DDEBUG -O3 -Wall -I/usr/X11/include -I/usr/include/directfb -DDATADIR=$(DATADIR)
7 LIBS = -L/usr/X11/lib -L/usr/lib/directfb-0.9.15 -lX11 -lXext -ldirectfb
8
9 OBJS = dfb-photoshow.o
10
11 dfb-photoshow: $(OBJS)
12         $(CC) -o $@ $(OBJS) $(LIBS)
13 clean:
14         rm $(OBJS)