]> git.zerfleddert.de Git - raggedstone/blob - heartbeat/Makefile
+=
[raggedstone] / heartbeat / Makefile
1 PWD := $(shell pwd)
2
3 PROJECT := raggedstone
4
5 #auto|lpt1|lpt2|lpt3|com1|com2|com3|com4|usb0|usb1|usb2|usb21|ttya|ttyb|tty00|tty01
6 CABLE ?= auto
7
8 INTSTYLE := silent
9
10 SOURCES = $(wildcard sources/*.v source/*.vhd)
11
12 all: $(PROJECT).bit final
13
14 log:
15 time make all &>build.log
16
17 xst: $(PROJECT).ngc
18
19 ngdbuild: $(PROJECT).ngd
20
21 $(PROJECT).ngc: $(SOURCES)
22 @# echo synclib > $(PROJECT).lso # hmm. things are different in ise 9.1
23 echo work > $(PROJECT).lso
24 xst -intstyle $(INTSTYLE) -ifn $(PROJECT).xst -ofn $(PROJECT).syr
25 @#cat $(PROJECT).syr
26
27 $(PROJECT).ngd: $(PROJECT).ngc
28 ngdbuild -intstyle $(INTSTYLE) -dd "$(PWD)/_ngo" -nt timestamp -uc $(PROJECT).ucf -p xc3s1500-fg456-4 $(PROJECT).ngc $(PROJECT).ngd
29
30 $(PROJECT)_map.ngm $(PROJECT).pcf: $(PROJECT).ngd
31 map -intstyle $(INTSTYLE) -p xc3s1500-fg456-4 -cm area -pr b -k 4 -c 100 -o $(PROJECT)_map.ncd $(PROJECT).ngd $(PROJECT).pcf
32
33 $(PROJECT).ncd: $(PROJECT)_map.ngm $(PROJECT).pcf
34 @#par -w -intstyle $(INTSTYLE) -ol std -n 4 -t 1 $(PROJECT)_map.ncd $(PROJECT).dir $(PROJECT).pcf
35 par -w -intstyle $(INTSTYLE) -ol std -t 1 $(PROJECT)_map.ncd $(PROJECT).ncd $(PROJECT).pcf
36
37 $(PROJECT).twx: $(PROJECT).ncd
38 trce -intstyle $(INTSTYLE) -e 3 -l 3 -s 4 -xml $(PROJECT) $(PROJECT).ncd -o $(PROJECT).twr $(PROJECT).pcf
39 @#cat $(PROJECT).twr
40
41 $(PROJECT).bit: $(PROJECT).ncd
42 bitgen -intstyle $(INTSTYLE) -f $(PROJECT).ut $(PROJECT).ncd
43 @# cp $(PROJECT).bit ../jcarr_last.bit
44 @#cat $(PROJECT).drc
45 @#cat $(PROJECT).bgn
46
47 $(PROJECT)-xcf02s.mcs $(PROJECT)-xcf04s.mcs: $(PROJECT).bit
48 promgen -intstyle $(INTSTYLE) -w -p mcs -u 0 $(PROJECT) -o $(PROJECT)-xcf02s $(PROJECT)-xcf04s -x xcf02s xcf04s
49
50 final:
51 -@grep -A 8 -B 1 ^Selected\ Device $(PROJECT).syr
52 -@grep -A 8 -B 1 ^Timing\ Summary $(PROJECT).syr
53 -@grep -A 21 -B 1 ^Design\ Summary $(PROJECT)_map.map
54
55 burn: $(PROJECT).bit
56 xc3sprog $(PROJECT).bit
57
58 load: $(PROJECT).bit
59 @sed -e "s|%CABLE%|$(CABLE)|g" xc3s1500.batch >xc3s1500.batch.tmp
60 impact -batch xc3s1500.batch.tmp
61 @rm xc3s1500.batch.tmp
62
63 flash: $(PROJECT)-xcf02s.mcs $(PROJECT)-xcf04s.mcs
64 @sed -e "s|%CABLE%|$(CABLE)|g" xcf.batch >xcf.batch.tmp
65 impact -batch xcf.batch.tmp
66 @rm xcf.batch.tmp
67
68 clean:
69 @rm -rf *.bit *.bgn *.mcs *.prm *.bld *.drc *.mcs *.ncd *.ngc *.ngd \
70 *.ngr *.pad *.par *.pcf *.prm *.syr *.twr *.twx *.xpi *.lso *.prm *.mcs _impact* \
71 $(PROJECT)_map.* $(PROJECT)_pad.* \
72 _ngo xst \
73 build.log \
74 $(PROJECT).unroutes *.xml
75
76 .PHONY: all final burn load flash clean xst ngdbuild log
Impressum, Datenschutz