mirror of
git://projects.qi-hardware.com/ben-wpan.git
synced 2024-11-06 10:53:10 +02:00
2921bcea47
- scripts/sanitize-profile: remove upsetting items from a KiCad profile - scripts/gitsch2ppm: option -S to enable sanitizing of profiles - scripts/schhist2web: pass option -S to gitsch2ppm - scripts/Makefile (xue-schhist): invoke schhist2web with option -S
32 lines
1.1 KiB
Makefile
32 lines
1.1 KiB
Makefile
SHELL = /bin/bash
|
|
|
|
.PHONY: all ben-wpan-schhist xue-schhist
|
|
|
|
# All the targets are for demo purposes pnly !
|
|
|
|
all:
|
|
@echo "possible targets:" 2>&1
|
|
@echo " ben-wpan-schhist ben-wpan-schhist-upload" 2>&1
|
|
@echo " xue-schhist xue-schhist-upload" 2>&1
|
|
@exit 1
|
|
|
|
ben-wpan-schhist:
|
|
SCHHIST_TITLE=ben-wpan/atrf \
|
|
SCHHIST_HOME_URL=http://projects.qi-hardware.com/index.php/p/ben-wpan/ \
|
|
SCHHIST_COMMIT_TEMPLATE='http://projects.qi-hardware.com/index.php/p/ben-wpan/source/commit/{}/' \
|
|
./schhist2web atrf/wpan-atrf.sch
|
|
|
|
ben-wpan-schhist-upload:
|
|
rsync -a --progress _out/{index.html,unchanged.png,thum*,diff*} \
|
|
werner@host:/home/httpd/almesberger/misc/ben/demo/
|
|
|
|
xue-schhist:
|
|
SCHHIST_TITLE=Xue \
|
|
SCHHIST_HOME_URL=http://projects.qi-hardware.com/index.php/p/xue/ \
|
|
SCHHIST_COMMIT_TEMPLATE='http://projects.qi-hardware.com/index.php/p/xue/source/commit/{}/' \
|
|
./schhist2web -S ../../xue kicad/xue-rnc/xue-rnc.sch _xue
|
|
|
|
xue-schhist-upload:
|
|
rsync -a --progress _xue/{index.html,unchanged.png,thum*,diff*} \
|
|
werner@host:/home/httpd/almesberger/misc/ben/demo2/
|