Skip to content
Snippets Groups Projects
Select Git revision
  • v2.3.1
  • master default
  • sp/trace-zero-ranges
  • stable-2.5
  • stable-2.4
  • stable-2.3
  • stable-2.2
  • stable-2.1
  • stable-2.0
  • stable-1.7
  • stable-1.6
  • stable-1.5
  • stable-1.4
  • stable-1.3
  • stable-1.2
  • stable-1.1
  • stable-1.0
  • stable-0.15
  • stable-0.14
  • stable-0.13
  • stable-0.12
  • v2.7.0-rc1
  • v2.7.0-rc0
  • v2.6.0
  • v2.5.1.1
  • v2.6.0-rc5
  • v2.6.0-rc4
  • v2.6.0-rc3
  • v2.6.0-rc2
  • v2.6.0-rc1
  • v2.6.0-rc0
  • v2.5.1
  • v2.5.0
  • v2.5.0-rc4
  • v2.5.0-rc3
  • v2.5.0-rc2
  • v2.5.0-rc1
  • v2.5.0-rc0
  • v2.4.1
  • v2.4.0.1
40 results

iohandler.c

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Makefile 812 B
    CXXFLAGS = -O0 -g -std=c++2a -Wall -Wextra -Wpedantic
    
    dynamic_test: dynamic_test.o tree_representative.o dynamic_node.o
    	$(CXX) $(CXXFLAGS) -o $@ $^
    
    dynamic_test.o: dynamic_test.cpp dynamic_node.o
    	$(CXX) $(CXXFLAGS) -c $<
    
    tree_representative.o: tree_representative.cpp dynamic_node.h
    	$(CXX) $(CXXFLAGS) -c $<
    
    dynamic_node.o: dynamic_node.cpp dynamic_node.h biased_binary_node.o
    	$(CXX) $(CXXFLAGS) -c $<
    
    biased_test: tree_test.o
    	$(CXX) $(CXXFLAGS) -o $@ $^
    
    tree_test.o: tree_test.cpp biased_binary_tree.o
    	$(CXX) $(CXXFLAGS) -c $<
    
    biased_binary_tree.o: biased_binary_tree.cpp biased_binary_tree.h biased_binary_node.o
    	$(CXX) $(CXXFLAGS) -c $<
    
    biased_binary_node.o: biased_binary_node.cpp biased_binary_node.h
    	$(CXX) $(CXXFLAGS) -c $<
    
    clean:
    	rm -f *.o *.gch biased_test dynamic_test
    
    .PHONY: clean