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