| www.delorie.com/archives/browse.cgi | search |
> Sorry, I don't understand. I mean: I didn't find a Makefile on the
> web page so I wrote one.
I keep the source files on the web site so others can get the latest,
but the Makefile is in my ~/.pcb/plugins/ directory where the
machine-specific plugins are built. It's not that interesting:
WEB = /home/web/pcb
INCS = \
-I$$HOME/geda/pcb-git/lesstif/src \
-I$$HOME/geda/pcb-git/lesstif \
`pkg-config --cflags glib-2.0` \
RULE = gcc -fPIC $(INCS) -g -O2 -Wall -shared $< -o $@
all : \
teardrops.so \
renumberblock.so \
autocrop.so \
boardflip.so \
findrat.so \
find-element.so \
polystitch.so \
add-dims.so \
drillsize.so \
minsilk.so
VPATH = ${WEB}
teardrops.so : ${WEB}/teardrops/teardrops.c
${RULE}
%.so : %.c
${RULE}
| webmaster | delorie software privacy |
| Copyright © 2019 by DJ Delorie | Updated Jul 2019 |