Mercurial > cropper
view Makefile @ 3:6aaba3a61563
added ratio control code
author | meillo@marmaro.de |
---|---|
date | Wed, 05 Dec 2007 00:08:39 +0100 |
parents | e359bea4c8ac |
children | 2f11ab3e6047 |
line wrap: on
line source
# basic GTK+ app makefile SOURCES = interface.c callbacks.c support.c main.c interface.h callbacks.h support.h OBJS = ${SOURCES:.c=.o} #CFLAGS = `gtk-config --cflags` #LDADD = `gtk-config --libs --cflags` datadir = /usr/local/share CFLAGS = `pkg-config --cflags gtk+-2.0` LDADD = `pkg-config --libs --cflags gtk+-2.0` CC = gcc PACKAGE = cropper all : ${OBJS} ${CC} -o ${PACKAGE} ${OBJS} ${LDADD} .c.o: ${CC} ${CFLAGS} -c $< clean: rm *.o rm ${PACKAGE} # end of file