source: gs2-extensions/music-stand/trunk/src/scribble-simple/Makefile@ 22561

Last change on this file since 22561 was 22561, checked in by davidb, 14 years ago

Initial version of digital music stand application for irex dr1000 that includes animated page turn and scribble annotation

File size: 349 bytes
Line 
1#CC = gcc
2CC = arm-poky-linux-gnueabi-gcc
3
4CFLAGS = -Wall -g \
5 -DG_DISABLE_DEPRECATED \
6 -DGDK_DISABLE_DEPRECATED \
7 -DGDK_PIXBUF_DISABLE_DEPRECATED \
8 -DGTK_DISABLE_DEPRECATED
9
10scribble-simple: scribble-simple.c
11 $(CC) scribble-simple.c -o scribble-simple $(CFLAGS) `pkg-config gtk+-2.0 --cflags --libs`
12
13clean:
14 rm -f *.o scribble-simple
15
Note: See TracBrowser for help on using the repository browser.