aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2003-09-28 10:44:31 +0000
committerMax Horn2003-09-28 10:44:31 +0000
commit761d9dacb9af7d4ac26b8b77cf68451a38139992 (patch)
tree6cf08df5ccfab89cb14930ebe43e973aa5cc40af
parent250fd8de690086dda3fedab8806161b9159e6e60 (diff)
downloadscummvm-rg350-761d9dacb9af7d4ac26b8b77cf68451a38139992.tar.gz
scummvm-rg350-761d9dacb9af7d4ac26b8b77cf68451a38139992.tar.bz2
scummvm-rg350-761d9dacb9af7d4ac26b8b77cf68451a38139992.zip
add 'plugins' to all target
svn-id: r10457
-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
######################################################################