view Makefile @ 17:4453456abad1

gathered all code in one file
author meillo@marmaro.de
date Thu, 04 Mar 2010 19:34:12 +0100
parents 88b8856fccf5
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