mirror of
https://github.com/projectM-visualizer/projectm.git
synced 2026-02-18 11:55:31 +00:00
29 lines
570 B
Makefile
29 lines
570 B
Makefile
BUILD=../../../build/
|
|
|
|
SOURCES= \
|
|
BuiltinFuncs.cpp \
|
|
Func.cpp MilkdropPreset.cpp \
|
|
PresetFrameIO.cpp \
|
|
CustomShape.cpp \
|
|
Eval.cpp \
|
|
MilkdropPresetFactory.cpp \
|
|
PerPixelEqn.cpp BuiltinParams.cpp \
|
|
InitCond.cpp Parser.cpp \
|
|
CustomWave.cpp Expr.cpp \
|
|
PerPointEqn.cpp Param.cpp \
|
|
PerFrameEqn.cpp \
|
|
IdlePreset.cpp \
|
|
../PresetFactory.cpp \
|
|
|
|
|
|
CPPFLAGS+= -I. -I..
|
|
#LDFLAGS+=-lftgl -lgl -lfreetype -lprojectM
|
|
|
|
#LIBRARIES=../libprojectM
|
|
PRODUCTS=MilkdropPresetFactory.lib
|
|
|
|
include $(BUILD)rules.mk
|
|
|
|
$(BUILD)rules.mk:
|
|
cd .. && git submodule update --init --recursive
|