Subversion Repositories shark

Rev

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

Rev Author Line No. Line
1085 pj 1
#
2
#
3
# PCI6025E Examples and Test programs
4
#
5
#
6
 
7
ifndef BASE
8
BASE=../..
9
endif
10
include $(BASE)/config/config.mk
11
 
12
PROGS=  test_dac wave test_dio test_ppi test_ec test_bec test_mes test_bms
13
 
14
include $(BASE)/config/example.mk
15
 
16
test_dac:
17
	make -f $(SUBMAKE) APP=test_dac INIT= OTHEROBJS=initfile.o
18
wave:
19
	make -f $(SUBMAKE) APP=wave INIT= OTHEROBJS=initfile.o
20
test_dio:
21
	make -f $(SUBMAKE) APP=test_dio INIT= OTHEROBJS=initfile.o
22
test_ppi:
23
	make -f $(SUBMAKE) APP=test_ppi INIT= OTHEROBJS=initfile.o
24
test_ec:
25
	make -f $(SUBMAKE) APP=test_ec INIT= OTHEROBJS=initfile.o
26
test_bec:
27
	make -f $(SUBMAKE) APP=test_bec INIT= OTHEROBJS=initfile.o
28
test_mes:
29
	make -f $(SUBMAKE) APP=test_mes INIT= OTHEROBJS=initfile.o
30
test_bms:
31
	make -f $(SUBMAKE) APP=test_bms INIT= OTHEROBJS=initfile.o
32