Subversion Repositories shark

Rev

Rev 1254 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1254 giacomo 1
all:
2
 
3
	gcc -o lparser.o -c -Wall lparser.c -I. -I..
4
	gcc -o lread.o -c -Wall lread.c -I. -I..
5
	gcc -o event_gen -Wall lparser.o lread.o -I. -I.. -lc event_gen.c
6
 
7
clean:
8
 
1255 giacomo 9
	rm -f *.o
10
	rm -f event_gen
1254 giacomo 11