ry / ebb fork watch download tarball
public
Description: web server
Homepage: http://ebb.rubyforge.org
Clone URL: git://github.com/ry/ebb.git
ryah (author)
Mon Apr 07 16:28:09 -0700 2008
commit  dc4a7e28337306378a008aa9d7e205a306e79934
tree    dbdebfdd3e23c2b01b4ab4134ebb8e64c97f7d68
parent  38185f36847ca1315f9241302d6bab7f2f7b1495
ebb / test / Makefile
100644 18 lines (11 sloc) 0.272 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
CC = gcc
CFLAGS = -g -Wall
 
TARGETS = parser_test
 
all: $(TARGETS)
 
parser_test: parser_test.c
  $(CC) $(CFLAGS) -o $@ $^ `pkg-config --libs --cflags glib-2.0` -I../src ../src/parser.o
 
check: parser_test
  -./parser_test
 
clean:
  rm -f $(TARGETS)
 
.PHONY: all clean check