0
0
Files
42piscine/C_07/Makefile
Guy Baconniere d30270c485 commit
2021-08-20 10:02:38 +02:00

24 lines
380 B
Makefile

#
# Copyright (c) 2021 Guy Baconniere.
#
## How to use this Makefile
#
# cd git
# mkdir ex00
# cd ex00
# make -f ../../Makefile ex00
#
clone:
@git clone git@vogsphere.42lausanne.ch:vogsphere/intra-uuid-e21d9203-b7f1-4e41-bc8e-18d34fc85e5d-3728040 git
cc:
@norminette -R CheckForbiddenSourceHeader
@gcc -Wall -Wextra -Werror -o a.out *.c
@./a.out
@rm -f a.out
all: clone