X-Authentication-Warning: delorie.com: mail set sender to geda-user-bounces using -f Date: Thu, 11 Oct 2012 16:28:17 -0400 Message-Id: <201210112028.q9BKSHtq009883@envy.delorie.com> From: DJ Delorie To: geda-user AT delorie DOT com In-reply-to: <20121011202542.2510.qmail@stuge.se> (message from Peter Stuge on Thu, 11 Oct 2012 22:25:42 +0200) Subject: Re: [geda-user] Flex? References: <20121011143959 DOT 7435 DOT qmail AT stuge DOT se> <1349967212 DOT 2412 DOT 37 DOT camel AT AMD64X2 DOT fritz DOT box> <20121011155417 DOT 13405 DOT qmail AT stuge DOT se> <20121011161725 DOT 15279 DOT qmail AT stuge DOT se> <201210111755 DOT q9BHtmj1000532 AT envy DOT delorie DOT com> <20121011182651 DOT 25438 DOT qmail AT stuge DOT se> <201210111838 DOT q9BIcJQM002980 AT envy DOT delorie DOT com> <20121011190303 DOT 28150 DOT qmail AT stuge DOT se> <201210111904 DOT q9BJ4O80004457 AT envy DOT delorie DOT com> <20121011202542 DOT 2510 DOT qmail AT stuge DOT se> Reply-To: geda-user AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: geda-user AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk > 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}