1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
all:
make -C ici $@
make -C ici install
make -C ltp $@
make -C ltp install
make -C dgr $@
make -C dgr install
make -C bss $@
make -C bss install
make -C bp $@
make -C bp install
make -C ams $@
make -C ams install
make -C cfdp $@
make -C cfdp install
clean:
make -C ici $@
make -C ltp $@
make -C dgr $@
make -C bss $@
make -C bp $@
make -C ams $@
make -C cfdp $@
test:
cd tests && ./runtestset normaltests
test-all:
cd tests && ./runtestset alltests
test-branch:
@echo
@echo "You need mercurial (hg) installed for this."
@echo
cd tests && hg branch | xargs -L1 ./runtestset
test-%:
cd tests && ./runtestset $*
retest:
cd tests && ./runtestset retest
vxworks5:
ldppc -r -o ionModule.o \
./ici/arch-vxworks5/icilib.o \
./ltp/arch-vxworks5/ltplib.o \
./ams/arch-vxworks5/amslib.o \
./bp/arch-vxworks5/bplib.o \
./dgr/arch-vxworks5/dgrlib.o \
./vxworks-utils/arch-vxworks5/vxwutils.o \
./vxwork-utils/vxwork-expat/libexpat.obj
chmod 755 ionModule.o
|