non/Mixer/makefile.inc

24 lines
422 B
PHP
Raw Normal View History

2008-05-16 22:52:10 +02:00
# -*- mode: makefile; -*-
2008-05-01 10:05:10 +02:00
Mixer_SRCS= \
Mixer/DPM.C \
Mixer/Mixer_Strip.C \
Mixer/Panner.C \
Mixer/Mixer.C \
Mixer_OBJS := $(Mixer_SRCS:.C=.o)
Mixer_LIBS := $(FLTK_LIBS)
INCLUDES := -I.
Mixer/mixer: $(Mixer_OBJS) FL
2008-05-16 22:52:10 +02:00
@ echo -n Linking mixer...
@ $(CXX) $(CXXFLAGS) $(Mixer_LIBS) $(Mixer_OBJS) -o $@ -LFL -lfl_widgets && echo $(DONE)
2008-05-01 10:05:10 +02:00
.PHONEY: Mixer
Mixer: Mixer/mixer
Mixer_clean:
rm -f $(Mixer_OBJS) Mixer/mixer