0
0
This commit is contained in:
Guy Baconniere
2021-08-20 15:00:10 +02:00
parent c6a7e9447c
commit 0c39ec556e
9 changed files with 142 additions and 8 deletions

23
C_09/Makefile Normal file
View File

@@ -0,0 +1,23 @@
#
# 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-8c6298c5-3398-4408-8f72-f127b4ef29de-3736152 git
cc:
@norminette -R CheckForbiddenSourceHeader
@gcc -Wall -Wextra -Werror -o a.out *.c
@./a.out
@rm -f a.out
all: clone