Sha256: 09c2595a3800fd36903a8e447fe6e48cdf079944f5611a4a8e651d1aa5cf9881
Contents?: true
Size: 357 Bytes
Versions: 27
Compression:
Stored size: 357 Bytes
Contents
if /linux/ =~ RUBY_PLATFORM open("Makefile", "wb") do |f| f.write <<-EOF CXX = g++ CXXFLAGS = -O3 -g -Wall inotify-wrapper: inotify-wrapper.o $(CXX) $(CXXFLAGS) $< -o $@ %.o: %.cpp $(CXX) $(CXXFLAGS) -c $< -o $@ install: # do nothing EOF end else open("Makefile", "wb") do |f| f.write <<-EOF install: # do nothing EOF end end
Version data entries
27 entries across 27 versions & 3 rubygems