Skip to content
Snippets Groups Projects
Select Git revision
  • c92e6827c632b0f1c5102429e675ba2e5cec930d
  • master default protected
2 results

postinst

Blame
  • Makefile 259 B
    test: splay_operation_test
    	./$<
    
    CXXFLAGS=-std=c++11 -O2 -Wall -Wextra -g -Wno-sign-compare
    
    splay_operation_test: splay_operation.h splay_operation_test.cpp test_main.cpp
    	$(CXX) $(CXXFLAGS) $^ -o $@
    
    clean::
    	rm -f splay_operation_test
    
    .PHONY: clean test