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)
Sat Mar 29 09:57:55 -0700 2008
commit  3c8fdda73cd2e571c3395c425737e439c1a8bf99
tree    a5ae8a6e2bd3f7be68aeaebbd2e3824ad3d5b58e
parent  c124a82348ab9278d4e48408033fc88fcbe3209e
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