2007-05-06 16:03:28 +00:00
|
|
|
# File: makefile for eeschema, mingw
|
|
|
|
|
2008-09-03 16:19:06 +00:00
|
|
|
#used only to define (KICAD_PLUGINS) :
|
2007-05-06 16:03:28 +00:00
|
|
|
include ../../libs.linux
|
|
|
|
|
|
|
|
all: netlist_form_pads-pcb
|
|
|
|
|
2007-11-04 22:14:47 +00:00
|
|
|
deps:
|
|
|
|
$(CXX) $(CPPFLAGS) -E -MMD -MG *.cpp >/dev/null
|
|
|
|
|
|
|
|
-include *.d
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
netlist_form_pads-pcb: netlist_form_pads-pcb.cpp makefile.gtk
|
2008-09-03 16:19:06 +00:00
|
|
|
g++ -D__UNIX__ -Wall netlist_form_pads-pcb.cpp -o netlist_form_pads-pcb
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2007-08-20 07:51:49 +00:00
|
|
|
install: netlist_form_pads-pcb
|
2007-06-16 09:07:23 +00:00
|
|
|
mkdir -p $(KICAD_PLUGINS)
|
|
|
|
cp netlist_form_pads-pcb $(KICAD_PLUGINS)
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
clean :
|
|
|
|
rm -f netlist_form_pads-pcb
|
2007-11-04 22:14:47 +00:00
|
|
|
rm -f *.o *.rsc *.res *.exe *.bak *.d
|
2007-05-06 16:03:28 +00:00
|
|
|
|