cropper

view Makefile @ 8:b0824876d379

memory is now freed aswell; added (a crappy) zoom2fit; did some casts to get rid of warnings
author meillo@marmaro.de
date Thu, 20 Mar 2008 19:31:44 +0100
parents 6aaba3a61563
children 7e1cf00de1df
line source
1 # basic GTK+ app makefile
2 SOURCES = interface.c callbacks.c support.c main.c interface.h callbacks.h support.h
3 OBJS = ${SOURCES:.c=.o}
4 #CFLAGS = `gtk-config --cflags`
5 #LDADD = `gtk-config --libs --cflags`
6 datadir = /usr/local/share
7 CFLAGS = `pkg-config --cflags gtk+-2.0`
8 LDADD = `pkg-config --libs --cflags gtk+-2.0`
9 CC = gcc
10 PACKAGE = cropper
14 all : ${OBJS}
15 ${CC} -o ${PACKAGE} ${OBJS} ${LDADD}
17 .c.o:
18 ${CC} ${CFLAGS} -c $<
21 clean:
22 rm -f *.o
23 rm -f ${PACKAGE}
26 # end of file