mutter/Makefile
2005-04-07 22:46:43 +00:00

38 lines
987 B
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-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-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