1 CFLAGS=-ansi -pedantic -Wall `pkg-config --cflags glib-2.0`
2 LIBS=`pkg-config --libs glib-2.0` -ll
6 sources = obcl.c main.c parse.c lex.c process.c
13 $(targets): $(sources:.c=.o)
14 $(CC) -o $@ $^ $(LIBS)
23 $(RM) $(targets) *.o core *~ lex.c parse.c parse.h