ry / ebb fork watch download tarball
public
Description: web server
Homepage: http://ebb.rubyforge.org
Clone URL: git://github.com/ry/ebb.git
Search Repo:
ryah (author)
Mon Apr 07 09:38:37 -0700 2008
commit  7393e3658c5b1bc422047df6bf40e0f08568af37
tree    bb2e35105908cd6c32122c5ea9d716857ff19ca6
parent  526f7824a2d26d12f7d890730771378d3dd4b19f
ebb / test / Makefile
100644 17 lines (11 sloc) 0.272 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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