Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 1690 → Rev 1615

/demos/trunk/newtrace/Makefile
File deleted
/demos/trunk/newtrace/udp/Makefile
File deleted
/demos/trunk/newtrace/udp/makefile
0,0 → 1,16
#
#
#
 
ifndef BASE
BASE=../../..
endif
include $(BASE)/config/config.mk
 
PROGS = udptrace
 
include $(BASE)/config/example.mk
 
udptrace:
make -f $(SUBMAKE) BASE=$(BASE) APP=udptrace INIT= OTHEROBJS="initfile.o" OTHERINCL= SHARKOPT="__LINUXC26__ __PCI__ __INPUT__ __NET__"
 
/demos/trunk/newtrace/instr/Makefile
File deleted
/demos/trunk/newtrace/instr/makefile
0,0 → 1,17
#
#
#
 
ifndef BASE
BASE=../../..
endif
include $(BASE)/config/config.mk
 
PROGS = instr
 
include $(BASE)/config/example.mk
 
instr:
make -f $(SUBMAKE) BASE=$(BASE) APP=instr INIT= OTHEROBJS="initfile.o bezier.o" OTHERINCL= SHARKOPT="__LINUXC26__ __PCI__ __INPUT__ __NET__"
#make -f $(SUBMAKE) BASE=$(BASE) APP=instr INIT= OTHEROBJS="initfile.o bezier_i.o" OTHERINCL= SHARKOPT="__LINUXC26__ __PCI__ __INPUT__ __NET__
 
/demos/trunk/newtrace/utils/Makefile
File deleted
/demos/trunk/newtrace/utils/makefile
0,0 → 1,36
#
# util_linux -> compiles the tracer utilities under Linux
#
 
ifndef BASE
BASE=../../..
endif
 
.PHONY: util_dos util_linux clean
 
all:
@echo Targets: util_dos util_linux clean
@echo Note: udpdump and list are available only under linux
 
util_linux: udpdump list pwcet_gen extract
 
udpdump: udpdump.c
gcc -Wimplicit-function-declaration -Wall -ggdb\
-I$(BASE)/tracer/include -I$(BASE)/oslib udpdump.c -o udpdump
 
list: list.c
gcc -Wimplicit-function-declaration -Wall -ggdb\
-I$(BASE)/tracer/include -I$(BASE)/oslib list.c -o list
 
pwcet_gen: pwcet_gen.c
gcc -Wimplicit-function-declaration -Wall -ggdb\
-I$(BASE)/tracer/include -I$(BASE)/oslib pwcet_gen.c -o pwcet_gen
 
extract: extract.c
gcc -Wimplicit-function-declaration -Wall -ggdb -lm\
-I$(BASE)/tracer/include -I$(BASE)/oslib extract.c -o extract
 
clean:
rm -rf *.o udpdump list pwcet_gen extract
 
 
/demos/trunk/newtrace/nosave/Makefile
File deleted
/demos/trunk/newtrace/nosave/makefile
0,0 → 1,16
#
#
#
 
ifndef BASE
BASE=../../..
endif
include $(BASE)/config/config.mk
 
PROGS = nosave
 
include $(BASE)/config/example.mk
 
nosave:
make -f $(SUBMAKE) BASE=$(BASE) APP=nosave INIT= OTHEROBJS="initfile.o" OTHERINCL= SHARKOPT="__LINUXC26__ __PCI__ __INPUT__"
 
/demos/trunk/newtrace/makefile
0,0 → 1,15
.PHONY: all clean
 
all:
make -C udp
make -C nosave
make -C instr
make -C utils util_linux
 
clean:
make -C udp clean
make -C nosave clean
make -C instr clean
make -C utils clean