mirror of
https://github.com/scummvm/scummvm.git
synced 2026-05-21 05:40:43 +00:00
19 lines
376 B
Makefile
19 lines
376 B
Makefile
|
|
MODULE := devtools/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
|