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

This commit is contained in:
raburton 2007-06-11 18:57:31 +00:00
parent 11f264c9d1
commit 30b3c00f01
1 changed files with 0 additions and 17 deletions

View File

@ -1,17 +0,0 @@
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