Skip to content
Snippets Groups Projects
Commit fa1d2608 authored by remi.greub's avatar remi.greub
Browse files

amélioration du makefile avec variable ARGS

parent f082b135
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,7 @@ CC:=gcc
CFLAGS:=-Wall -Wextra -pedantic -g -fsanitize=address,undefined -fsanitize-recover=address
LDFLAGS:=-lm
EXEC:=puissance4
ARGS:=1 6 7
puissance4: main.c puissance4.o
......@@ -18,7 +18,7 @@ clean:
$(MAKE) -C testbed clean
run: $(EXEC)
./$<
./$< $(ARGS)
run_tests: unit_tests
./$<
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment