Commit 690fda2f authored by charras's avatar charras

very minor updates

parent ef0f1fcd
# 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 @@ ...@@ -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>
\ No newline at end of file
...@@ -3,11 +3,10 @@ ...@@ -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 ...@@ -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
......
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