Rev 3 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2 | pj | 1 | # National Instruments PCI6025E Driver |
2 | |||
3 | ifndef BASE |
||
4 | BASE=../.. |
||
5 | endif |
||
45 | pj | 6 | OSLIB=$(BASE)/oslib |
7 | |||
2 | pj | 8 | include $(BASE)/config/config.mk |
9 | |||
10 | LIBRARY = 6025e |
||
11 | |||
12 | OBJS_PATH = $(BASE)/drivers/pci6025e |
||
13 | |||
14 | OBJS = pci6025e.o ./tim/timer.o ./dac/dac.o ./dio_ppi/dio_ppi.o |
||
15 | |||
16 | include $(BASE)/config/lib.mk |
||
17 | |||
18 | PCI6025EDIRS := tim dio_ppi dac |
||
19 | PCI6025EOBJS := $(foreach DIR,$(PCI6025EDIRS),$(wildcard $(DIR)/*.o)) |
||
20 | |||
21 | clean:: |
||
22 | rm -f $(PCI6025EOBJS) |