Subversion Repositories OpenARM Single-board Computer

Rev

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

Rev 241 Rev 244
Line 2... Line 2...
2
2
3
3
4
SCH=$(shell ls sch/*sch)
4
SCH=$(shell ls sch/*sch)
5
5
6
6
-
 
7
# i broke the makefile, (jelle)
-
 
8
# http://www.gnu.org/software/m4/manual/html_node/Patsubst.html
7
drc: $(patsubst %.sch,drc/%.drc,$(SCH))
9
drc: $(patsubst %.sch,drc/%.drc,$(SCH))
8
10
9
11
10
drc/%.drc: %.sch
12
drc/%.drc:	%.sch
11
    gnetlist -g drc2 -o $@ $^
13
	gnetlist -g drc2 -o $@ $^
12
-
 
13
-