view Makefile @ 18:9d6e8105b145

rename
author meillo@marmaro.de
date Thu, 04 Mar 2010 19:34:39 +0100
parents 4453456abad1
children 762de8cee1e4
line wrap: on
line source

# makefile for cropper

CC = gcc
CFLAGS = `pkg-config --cflags gtk+-2.0`
LDFLAGS = `pkg-config --libs --cflags gtk+-2.0`


cropper: main.o
	${CC} -o cropper main.o ${LDFLAGS}


clean:
	rm -f *.o

realclean: clean
	rm -f cropper