Don't build the automation tests helper so by default

This commit is contained in:
Thomas Goyne 2013-05-02 18:07:00 -07:00
parent bdebf392e2
commit 34be32d570
2 changed files with 6 additions and 1 deletions

View File

@ -4,9 +4,13 @@
# * Allow variables to be overridden on the CL.
.PHONY: all install clean subdirs $(SUBDIRS)
all: subdirs $(LIB) $(LIB_SHARED) $(PROGRAM)
all: subdirs $(PROGRAM)
.DEFAULT_GOAL := all
ifneq (no, $(BUILD_LIB))
all: $(LIB) $(LIB_SHARED)
endif
OBJ = $(addsuffix .o, $(basename $(SRC)))
DEP = $(addsuffix .d, $(basename $(SRC)))

View File

@ -2,6 +2,7 @@ include ../Makefile.inc
LIB_SHARED = aegisub.so
LIB_VERSION = 0.1.0
BUILD_LIB = no
CXXFLAGS += -I../libaegisub/include -I../src $(CXXFLAGS_WX)
CPPFLAGS += $(CPPFLAGS_BOOST)