1
0
mirror of git://projects.qi-hardware.com/kicad-libs.git synced 2025-04-21 12:17:26 +03:00

title page: always generate title.ps when generating the catalog

In order to keep "phony" title.ps from triggering a catalog rebuild when
nothing has changed, we also have to remove it as a dependency from
"catalog", and just invoke "make" explicitly.
This commit is contained in:
Werner Almesberger
2012-12-21 20:25:35 -03:00
parent 694cebf972
commit 21513c1c61
3 changed files with 6 additions and 2 deletions

View File

@@ -40,7 +40,8 @@ modules.pro: Makefile
brd: all modules.pro
pcbnew `pwd`/modules.brd
catalog catalog.pdf: HIERARCHY $(MODULES:%=%.fpd) title.ps
catalog catalog.pdf: HIERARCHY $(MODULES:%=%.fpd)
$(MAKE) title.ps
genkicat -F -p $(MODULES:%=-l %.fpd) -t title.ps \
HIERARCHY DESCR >catalog.pdf || \
{ rm -f catalog.pdf; exit 1; }