Skip to content
Snippets Groups Projects
Select Git revision
  • acf70a8e7b9fcbb5c56143dc32b6b490d3c9c724
  • master default protected
  • corrections-enonce
  • 1-test-vec-to-coordinates
  • patch-1
5 results

02_lois_de_newton.md

Blame
  • Forked from orestis.malaspin / isc_physics
    Source project has a limited visibility.
    Makefile 225 B
    CC := gcc
    CFLAGS := -std=c11 -Wall -Wextra -fsanitize=address -fsanitize=leak -g
    SRC = $(wildcard *.c)
    
    
    all: exec
    
    main: ${SRC}
    	${CC} ${CFLAGS} ${SRC} -o $@
    
    exec: main
    	./main
    
    .PHONY: clean
    
    clean:
    	rm -rf *.o main a.out