Skip to content
Snippets Groups Projects
Makefile 133 B
Newer Older
  • Learn to ignore specific revisions
  • Daniel Müller's avatar
    Daniel Müller committed
    test.out: test.o
    	g++ -Wall -pthread -O3 -o $@ $<
    
    test.o: test.cpp
    	g++ -Wall -pthread -O3 -c $<
    
    Daniel Müller's avatar
    Daniel Müller committed
    
    .PHONY: clean
    clean:
    	rm *.o *.out