Subversion Repositories OpenARM Single-board Computer

Rev

Rev 221 | Rev 244 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 221 Rev 241
Line 1... Line 1...
1
.PHONY: 
1
.PHONY:
2
2
3
3
4
SCH=$(shell ls *sch)
4
SCH=$(shell ls sch/*sch)
5
5
6
6
7
drc: $(patsubst %.sch,drc/%.drc,$(SCH))
7
drc: $(patsubst %.sch,drc/%.drc,$(SCH))
8
8
9
9
10
drc/%.drc: %.sch
10
drc/%.drc: %.sch
11
	gnetlist -g drc2 -o $@ $^
11
    gnetlist -g drc2 -o $@ $^
12
12
13
13