blob: 385061eac1cd841dc2554944374e73043c9596b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
LIBS=`pkg-config --libs clutter-0.6 gnome-vfs-2.0 clutter-gst-0.6`
INCS=`pkg-config --cflags clutter-0.6 gnome-vfs-2.0 clutter-gst-0.6`
.c.o:
$(CC) -g -Wall $(CFLAGS) $(INCS) -c $*.c
all: table
table: table.o clutter-dominatrix.o clutter-video-player.o
$(CC) -g -Wall $(CFLAGS) -o $@ table.o clutter-dominatrix.o clutter-video-player.o $(LIBS)
clean:
rm -fr *.o table
|