Subversion Repositories shark

Rev

Rev 2 | Rev 45 | Go to most recent revision | 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
6
include $(BASE)/config/config.mk
7
 
8
LIBRARY       = 6025e
9
 
10
OBJS_PATH     = $(BASE)/drivers/pci6025e
11
 
12
OBJS = pci6025e.o ./tim/timer.o ./dac/dac.o ./dio_ppi/dio_ppi.o
13
 
14
include $(BASE)/config/lib.mk
15
 
16
PCI6025EDIRS := tim dio_ppi dac
17
PCI6025EOBJS := $(foreach DIR,$(PCI6025EDIRS),$(wildcard $(DIR)/*.o))
18
 
19
clean::
20
	rm -f $(PCI6025EOBJS)