Cog/Frameworks/libsidplay/sidplay-residfp-code/.svn/pristine/f9/f9d85f12cc9f6f2a1002964766e77d4b6b0b2de6.svn-base

13 lines
189 B
Text
Raw Normal View History

.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 $@