Add a test script to do profiling. Some cleaning as well.
[lttv.git] / genevent / Makefile
1 SHELL = /bin/sh
2
3 CC = gcc
4
5 CFLAGS = -g -o
6
7 all: genevent
8
9 genevent:genevent.o parser.o
10 $(CC) $(CFLAGS) $@ genevent.o parser.o
11
12 genevent.o: genevent.c genevent.h parser.h
13 $(CC) -g -c genevent.c
14
15 parser.o: parser.c parser.h
16 $(CC) -g -c parser.c
17
18 clean:
19 rm -rf *.o *~ *#
20
21
This page took 0.029141 seconds and 4 git commands to generate.