2021-08-17 20:08:54 +02:00
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# Copyright (c) 2021 Guy Baconniere.
|
|
|
|
|
#
|
|
|
|
|
## How to use this Makefile
|
|
|
|
|
#
|
|
|
|
|
# cd git
|
|
|
|
|
# mkdir ex00
|
|
|
|
|
# cd ex00
|
|
|
|
|
# make -f ../../Makefile ex00
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
clone:
|
2021-08-20 13:26:21 +02:00
|
|
|
@git clone git@vogsphere.42lausanne.ch:vogsphere/intra-uuid-62428700-374d-44dc-96a4-05f15b99ad17-3735923 git
|
2021-08-17 20:08:54 +02:00
|
|
|
|
|
|
|
|
cc:
|
|
|
|
|
@norminette -R CheckForbiddenSourceHeader
|
|
|
|
|
@gcc -Wall -Wextra -Werror -o a.out *.c
|
|
|
|
|
@./a.out
|
|
|
|
|
@rm -f a.out
|
|
|
|
|
|
|
|
|
|
all: clone
|
|
|
|
|
|