Skip to content
Snippets Groups Projects
Makefile 303 B
Newer Older
  • Learn to ignore specific revisions
  • Micah Elizabeth Scott's avatar
    Micah Elizabeth Scott committed
    CFLAGS = -O3 -Wall -Ilib -g -march=native -ffast-math
    
    CFLAGS += -Wno-tautological-constant-out-of-range-compare -Wno-gnu-static-float-init
    
    LFLAGS = -lm -lstdc++ -g
    
    	$(CC) $(CFLAGS) $< -o $@ $(LFLAGS)
    
    
    .PHONY: clean all
    
    clean:
    	rm -f $(PROGRAMS)