Update changelog date
[rateit.git] / Makefile
1 all: rateit
2
3 rateit_glade.h: rateit.glade
4 cat rateit.glade | perl -e 'print "static unsigned char rateit_glade[]=";while(<>){s/"/\\"/g; s/^/"/; s/$$/\\n"/; print}print ";\n"' > rateit_glade.h
5
6 rateit: rateit.c rateit_glade.h
7 gcc -g -O2 rateit.c -o rateit `pkg-config --cflags --libs libglade-2.0` -export-dynamic
8
9 clean:
10 rm rateit rateit_glade.h
This page took 0.020723 seconds and 4 git commands to generate.