Commit 30b3c00f authored by raburton's avatar raburton
Browse files

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

parent 11f264c9
Loading
Loading
Loading
Loading

make_static.linux

deleted100644 → 0
+0 −17
Original line number Original line Diff line number Diff line
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