From 34be32d5705b6f599a435971d63c111203f2ff29 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Thu, 2 May 2013 18:07:00 -0700 Subject: [PATCH] Don't build the automation tests helper so by default --- aegisub/Makefile.target | 6 +++++- aegisub/automation/Makefile | 1 + 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/aegisub/Makefile.target b/aegisub/Makefile.target index 0c95216e1..9794febdd 100644 --- a/aegisub/Makefile.target +++ b/aegisub/Makefile.target @@ -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))) diff --git a/aegisub/automation/Makefile b/aegisub/automation/Makefile index 15b44658d..50cc2c8b1 100644 --- a/aegisub/automation/Makefile +++ b/aegisub/automation/Makefile @@ -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)