Commit 690fda2f authored by charras's avatar charras

very minor updates

parent ef0f1fcd
# File: makefile for eeschema, mingw
#used only to define (KICAD_BIN) :
#used only to define (KICAD_BIN) and (LIBSTDC) :
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
deps:
......
......@@ -15,11 +15,9 @@
<resources>
<jar download="eager" href="router.jar"/>
<extension href="help.jnlp" name="Java Help"/>
<java version="1.6+"/>
<java version="1.6+" java-vm-args="-Xmx1024m"/>
</resources>
<application-desc main-class="gui.MainApplication">
<argument>-webstart</argument>
<argument>-Xincgc</argument>
<argument>-Xmx512m</argument>
</application-desc>
</jnlp>
\ No newline at end of file
......@@ -3,11 +3,10 @@
include ../libs.linux
BOOST_LIB = /usr/include/boost
BOOST_LIB = ../
# Additional compiler flags
CPPFLAGS +=
CPPFLAGS += -I $(BOOST_LIB)
TARGET = pcbnew
......@@ -20,7 +19,7 @@ include makefile.include
-include *.d
CPPFLAGS += $(EXTRACPPFLAGS)
EDACPPFLAGS = $(CPPFLAGS)
EDACPPFLAGS = $(CPPFLAGS) $(BOOST_LIB)
$(TARGET): $(OBJECTS) makefile.gtk makefile.include $(LIBVIEWER3D) $(EXTRALIBS) ../libs.linux
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment