0
0
This commit is contained in:
Guy Baconniere
2021-08-17 18:28:27 +02:00
parent c5b02f1036
commit 6e576f39ca
16 changed files with 329 additions and 0 deletions

23
C_Piscine_C_05/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-157e39ca-a99c-4439-9939-72b0b56b975c-3725547 git
cc:
@norminette -R CheckForbiddenSourceHeader
@gcc -Wall -Wextra -Werror -o a.out *.c
@./a.out
@rm -f a.out
all: clone