cropper

diff Makefile @ 0:ca9155129253

initial commit code base: gthumb_crop.glade and generated code from it with glade
author meillo@marmaro.de
date Tue, 04 Dec 2007 16:48:51 +0100
parents
children e359bea4c8ac
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/Makefile	Tue Dec 04 16:48:51 2007 +0100
     1.3 @@ -0,0 +1,20 @@
     1.4 +# basic GTK+ app makefile
     1.5 +SOURCES = interface.c callbacks.c support.c main.c interface.h callbacks.h support.h
     1.6 +OBJS    = ${SOURCES:.c=.o}
     1.7 +#CFLAGS  = `gtk-config --cflags`
     1.8 +#LDADD   = `gtk-config --libs --cflags`
     1.9 +datadir = /usr/local/share
    1.10 +CFLAGS  = `pkg-config --cflags gtk+-2.0`
    1.11 +LDADD   = `pkg-config --libs --cflags gtk+-2.0`
    1.12 +CC      = gcc
    1.13 +PACKAGE = cropper
    1.14 +
    1.15 +
    1.16 +
    1.17 +all : ${OBJS}
    1.18 +	${CC} -o ${PACKAGE} ${OBJS} ${LDADD}
    1.19 +
    1.20 +.c.o:
    1.21 +	${CC} ${CFLAGS} -c $<
    1.22 +
    1.23 +# end of file