Mercurial > cropper
comparison Makefile @ 19:762de8cee1e4 default tip
fixed makefile; some cleanups
author | meillo@marmaro.de |
---|---|
date | Thu, 04 Mar 2010 19:44:28 +0100 |
parents | 4453456abad1 |
children |
comparison
equal
deleted
inserted
replaced
18:9d6e8105b145 | 19:762de8cee1e4 |
---|---|
3 CC = gcc | 3 CC = gcc |
4 CFLAGS = `pkg-config --cflags gtk+-2.0` | 4 CFLAGS = `pkg-config --cflags gtk+-2.0` |
5 LDFLAGS = `pkg-config --libs --cflags gtk+-2.0` | 5 LDFLAGS = `pkg-config --libs --cflags gtk+-2.0` |
6 | 6 |
7 | 7 |
8 cropper: main.o | 8 cropper: cropper.c |
9 ${CC} -o cropper main.o ${LDFLAGS} | 9 ${CC} -o cropper cropper.c ${LDFLAGS} |
10 | 10 |
11 | 11 |
12 clean: | 12 clean: |
13 rm -f *.o | 13 rm -f *.o |
14 | 14 |