2007-05-06 16:03:28 +00:00
|
|
|
## Makefile for eeschema
|
|
|
|
|
|
|
|
|
2007-06-14 16:28:05 +00:00
|
|
|
include ../libs.linux
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
|
2007-06-14 16:28:05 +00:00
|
|
|
# Additional compiler flags
|
2008-02-28 22:49:06 +00:00
|
|
|
CPPFLAGS +=
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
TARGET = eeschema
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
all: $(TARGET)
|
|
|
|
|
2007-11-04 22:14:47 +00:00
|
|
|
deps:
|
|
|
|
$(CXX) $(CPPFLAGS) -E -MMD -MG *.cpp >/dev/null
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
include makefile.include
|
2007-11-04 22:14:47 +00:00
|
|
|
-include *.d
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
CPPFLAGS += $(EXTRACPPFLAGS)
|
|
|
|
EDACPPFLAGS = $(CPPFLAGS)
|
|
|
|
|
|
|
|
$(TARGET): $(OBJECTS) makefile.gtk makefile.include $(EXTRALIBS) ../libs.linux
|
|
|
|
$(LD) $(OBJECTS) $(LDFLAGS) $(LIBS) -o $(TARGET)
|
|
|
|
|
|
|
|
netlist_form_pads-pcb: plugins/netlist_form_pads-pcb.cpp makefile.gtk
|
2007-12-11 16:41:43 +00:00
|
|
|
$(CXX) $(CXXFLAGS) -D__UNIX__ -Wall plugins/netlist_form_pads-pcb.cpp $(LIBSTDC) -o netlist_form_pads-pcb
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
|
2007-05-28 18:09:49 +00:00
|
|
|
install: $(TARGET)
|
2007-08-20 07:51:49 +00:00
|
|
|
mkdir -p $(KICAD_BIN)
|
2007-05-06 16:03:28 +00:00
|
|
|
cp $(TARGET) $(KICAD_BIN)
|
|
|
|
|
|
|
|
|
|
|
|
clean:
|
2007-11-04 22:14:47 +00:00
|
|
|
rm -f *.o *.d *~ core *.bak
|
2007-05-06 16:03:28 +00:00
|
|
|
rm -f $(TARGET)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|