ry / ebb fork watch download tarball
public this repo is viewable by everyone
Description: web server
Homepage: http://ebb.rubyforge.org
Clone URL: git://github.com/ry/ebb.git
ryah (author)
about 1 month ago
commit  1a53c2b86d8cb383167163cff4acc0bfaa344a86
tree    20e0acb30afbae2669fb6803ab762adf4082895c
parent  8f16a4f26257e8063b8aa82e6e2c0a11b7eb3f8a
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