move all projects into the trunk directory
[lttv.git] / trunk / ltt / attic-branches / yangxx / convert / Makefile
1 CC=gcc
2 CFLAGS=-g -o
3 CMPFLAGS=-g -c
4 INCLUDEPATH=-Iinclude
5
6 #GLIB_CFLAGS = -I/usr/include/glib-1.2 -I/usr/lib/glib/include
7 GLIB_CFLAGS = -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include
8 #GLIB_CFLAGS = -I/usr/include/glib-2.0
9
10 GLIB_CONFIG = /usr/bin/glib-config
11 GLIB_LIBS = -L/usr/lib -lglib
12
13 OBJ= convert.o
14
15
16 test: $(OBJ)
17 $(CC) $(CFLAGS) test $(OBJ) $(GLIB_LIBS)
18
19 convert.o: convert.c
20 $(CC) $(INCLUDEPATH) $(GLIB_CFLAGS) $(CMPFLAGS) convert.c
21
22
23
24 clean:
25 rm -rf *.o *~ *#
26
27
This page took 0.027838 seconds and 4 git commands to generate.