mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-10 18:51:23 +00:00
21 lines
388 B
Makefile
21 lines
388 B
Makefile
# $URL$
|
|
# $Id$
|
|
|
|
MODULE := tools/create_project
|
|
|
|
MODULE_OBJS := \
|
|
create_project.o \
|
|
codeblocks.o \
|
|
msvc.o \
|
|
visualstudio.o \
|
|
msbuild.o
|
|
|
|
# Set the name of the executable
|
|
TOOL_EXECUTABLE := create_project
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|
|
|
|
# Silence variadic macros warning for C++ (disabled as this is included globally)
|
|
#CXXFLAGS := $(CXXFLAGS) -Wno-variadic-macros
|