Subversion Repositories shark

Rev

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

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