very minor updates
This commit is contained in:
parent
ef0f1fcd55
commit
690fda2f1a
|
@ -1,18 +1,8 @@
|
||||||
# File: makefile for eeschema, mingw
|
# File: makefile for eeschema, mingw
|
||||||
|
|
||||||
#used only to define (KICAD_BIN) :
|
#used only to define (KICAD_BIN) and (LIBSTDC) :
|
||||||
include ../../libs.linux
|
include ../../libs.linux
|
||||||
|
|
||||||
# Use static link for libsupc++ (locate libstdc++.a and copy it in kicad_dev/syslibs)
|
|
||||||
ifeq ($(KICAD_STATIC_LINK), 1)
|
|
||||||
#define path for a copy of libstdc++.a or/and libsupc++.a:
|
|
||||||
LIBSTDC = ../../syslibs/libstdc++.a
|
|
||||||
else
|
|
||||||
# Or Use static link for libsupc++ or libstdc++
|
|
||||||
LIBSTDC = -lstdc++
|
|
||||||
endif
|
|
||||||
|
|
||||||
|
|
||||||
all: netlist_form_pads-pcb
|
all: netlist_form_pads-pcb
|
||||||
|
|
||||||
deps:
|
deps:
|
||||||
|
|
|
@ -15,11 +15,9 @@
|
||||||
<resources>
|
<resources>
|
||||||
<jar download="eager" href="router.jar"/>
|
<jar download="eager" href="router.jar"/>
|
||||||
<extension href="help.jnlp" name="Java Help"/>
|
<extension href="help.jnlp" name="Java Help"/>
|
||||||
<java version="1.6+"/>
|
<java version="1.6+" java-vm-args="-Xmx1024m"/>
|
||||||
</resources>
|
</resources>
|
||||||
<application-desc main-class="gui.MainApplication">
|
<application-desc main-class="gui.MainApplication">
|
||||||
<argument>-webstart</argument>
|
<argument>-webstart</argument>
|
||||||
<argument>-Xincgc</argument>
|
|
||||||
<argument>-Xmx512m</argument>
|
|
||||||
</application-desc>
|
</application-desc>
|
||||||
</jnlp>
|
</jnlp>
|
|
@ -3,11 +3,10 @@
|
||||||
|
|
||||||
include ../libs.linux
|
include ../libs.linux
|
||||||
|
|
||||||
BOOST_LIB = /usr/include/boost
|
BOOST_LIB = ../
|
||||||
|
|
||||||
# Additional compiler flags
|
# Additional compiler flags
|
||||||
CPPFLAGS +=
|
CPPFLAGS += -I $(BOOST_LIB)
|
||||||
|
|
||||||
|
|
||||||
TARGET = pcbnew
|
TARGET = pcbnew
|
||||||
|
|
||||||
|
@ -20,7 +19,7 @@ include makefile.include
|
||||||
-include *.d
|
-include *.d
|
||||||
|
|
||||||
CPPFLAGS += $(EXTRACPPFLAGS)
|
CPPFLAGS += $(EXTRACPPFLAGS)
|
||||||
EDACPPFLAGS = $(CPPFLAGS)
|
EDACPPFLAGS = $(CPPFLAGS) $(BOOST_LIB)
|
||||||
|
|
||||||
|
|
||||||
$(TARGET): $(OBJECTS) makefile.gtk makefile.include $(LIBVIEWER3D) $(EXTRALIBS) ../libs.linux
|
$(TARGET): $(OBJECTS) makefile.gtk makefile.include $(LIBVIEWER3D) $(EXTRALIBS) ../libs.linux
|
||||||
|
|
Loading…
Reference in New Issue