ee8479e42b4010e7a4f7b9216a8b5662203637d9
[my-code/dfb-photoshow.git] / Makefile
1 # Makefile of dfb-photoshow
2
3 INCLUDEDIR = /usr/include
4
5 CFLAGS = -DDEBUG -O3 -Wall -I/usr/X11/include -I/usr/include/directfb
6 LIBS = -L/usr/X11/lib -L/usr/lib/directfb-0.9.15 -lX11 -lXext -ldirectfb
7
8 OBJS = dfb-photoshow.o
9
10 dfb-photoshow: $(OBJS)
11         $(CC) -o $@ $(OBJS) $(LIBS)
12 clean:
13         rm $(OBJS)