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

13 lines
189 B
Makefile

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