Cog/Frameworks/libsidplay/sidplay-residfp-code/combined-waveforms/Makefile

13 lines
189 B
Makefile
Raw Normal View History

2014-12-08 03:26:31 -03:00
.PHONY: all clean
# Uncomment to enable parallel processing
#FLAG_OPENMP = -fopenmp
2014-12-08 03:26:31 -03:00
all: combined
clean:
$(RM) combined
%: %.cpp
$(CXX) $(CXXFLAGS) $(FLAG_OPENMP) -std=c++11 $< -o $@