add 'plugins' to all target

svn-id: r10457
This commit is contained in:
Max Horn 2003-09-28 10:44:31 +00:00
parent 250fd8de69
commit 761d9dacb9
2 changed files with 7 additions and 7 deletions

View File

@ -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)

View File

@ -5,7 +5,7 @@
######################################################################
# The defaul build target: just build the scummvm executable
######################################################################
all: $(EXECUTABLE)
all: $(EXECUTABLE) plugins
######################################################################