Commit 30b3c00f authored by raburton's avatar raburton

remove static makefile for linux (as static is default anyway)

parent 11f264c9
KICAD_SUBDIRS = common 3d-viewer eeschema eeschema/plugins pcbnew cvpcb kicad gerbview
KICAD_SUBDIRS_BIN = eeschema eeschema/plugins pcbnew cvpcb kicad gerbview
# How to invoke make:
MAKE = make -k -f makefile.gtk KICAD_STATIC_LINK=1
MAKE_INSTALL = make -f makefile.gtk install
ERASE = rm -f *.o
all:
@for d in $(KICAD_SUBDIRS); do (cd $$d && $(MAKE)); done
install:
@for d in $(KICAD_SUBDIRS_BIN); do (cd $$d && $(MAKE_INSTALL)); done
clean:
@for d in $(KICAD_SUBDIRS); do (cd $$d && $(ERASE)); done
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