mirror of
https://github.com/brl/mutter.git
synced 2024-11-25 09:30:45 -05:00
40 lines
1.0 KiB
Makefile
40 lines
1.0 KiB
Makefile
LIBS=-lpng -lGL -ljpeg -L/usr/X11R6/lib -lX11 `pkg-config --libs pangoft2 pango glib-2.0 gthread-2.0`
|
|
CFLAGS=`pkg-config --cflags pangoft2 pango glib-2.0 gthread-2.0`
|
|
|
|
.c.o:
|
|
$(CC) -g -Wall $(CFLAGS) $(INCS) -c $*.c
|
|
|
|
OBJS=cltr.o pixbuf.o util.o fonts.o \
|
|
cltr-core.o \
|
|
cltr-glu.o \
|
|
cltr-texture.o \
|
|
cltr-widget.o \
|
|
cltr-events.o \
|
|
cltr-window.o \
|
|
cltr-photo-grid.o \
|
|
cltr-list.o \
|
|
cltr-scratch.o
|
|
|
|
# cltr-photo-grid.o
|
|
|
|
clutter: $(OBJS)
|
|
$(CC) -g -Wall -o $@ $(OBJS) $(LIBS)
|
|
|
|
$(OBJS): pixbuf.h util.h fonts.h \
|
|
cltr.h \
|
|
cltr-private.h \
|
|
cltr-glu.h \
|
|
cltr-events.h \
|
|
cltr-texture.h \
|
|
cltr-widget.h \
|
|
cltr-window.h \
|
|
cltr-photo-grid.h \
|
|
cltr-list.h \
|
|
cltr-scratch.h
|
|
|
|
#cltr-photo-grid.h
|
|
|
|
|
|
clean:
|
|
rm -fr *.o clutter test
|