aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile12
-rw-r--r--Makefile.common2
2 files changed, 7 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 14e68041be..26de1e6c3c 100644
--- a/Makefile
+++ b/Makefile
@@ -15,13 +15,13 @@ CP := cp
# Default compilation parameters. Normally don't edit these #
#######################################################################
-DEFINES := -DHAVE_CONFIG_H
-LDFLAGS :=
-INCLUDES:= -I. -Icommon
-LIBS :=
-OBJS :=
+DEFINES := -DHAVE_CONFIG_H
+LDFLAGS :=
+INCLUDES := -I. -Icommon
+LIBS :=
+OBJS :=
-MODULES :=
+MODULES :=
MODULE_DIRS :=
EXECUTABLE := scummvm$(EXEEXT)
diff --git a/Makefile.common b/Makefile.common
index e998a20a5e..9ea48ee352 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -5,7 +5,7 @@
######################################################################
# The defaul build target: just build the scummvm executable
######################################################################
-all: $(EXECUTABLE)
+all: $(EXECUTABLE) plugins
######################################################################