Subversion Repositories shark

Rev

Rev 1245 | Rev 1250 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1199 giacomo 1
#
2
#
3
#
4
 
5
ifndef BASE
6
BASE=../..
7
endif
8
include $(BASE)/config/config.mk
9
 
1247 giacomo 10
PROGS = nload
1199 giacomo 11
 
12
include $(BASE)/config/example.mk
13
 
1247 giacomo 14
nload:
15
	make -f $(SUBMAKE) APP=nload INIT= OTHEROBJS="fsfinit.o initfile.o shark.o eventc.o" OTHERINCL= SHARKOPT="__OLDCHAR__ __FIRST__"
1237 giacomo 16
	gcc -o lread.o -c lread.c
17
	gcc -o lparser.o -c lparser.c
18
	gcc -o event_gen event_gen.c lparser.o lread.o
1199 giacomo 19