0
0
Files
42piscine/C_09/Makefile
Guy Baconniere 712e06565d sync
2021-08-24 17:16:52 +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-c788fb82-b004-4075-9eed-e90d2aa94bc7-3745071 git
cc:
@norminette -R CheckForbiddenSourceHeader
@gcc -Wall -Wextra -Werror -o a.out *.c
@./a.out
@rm -f a.out
all: clone