kicad/eeschema/plugins/makefile.gtk

24 lines
518 B
Plaintext
Raw Normal View History

2007-05-06 16:03:28 +00:00
# File: makefile for eeschema, mingw
#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
g++ -D__UNIX__ -Wall netlist_form_pads-pcb.cpp -o netlist_form_pads-pcb
2007-05-06 16:03:28 +00:00
install: netlist_form_pads-pcb
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