24 lines
380 B
Makefile
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-04054325-5e96-4318-8638-2bf50d0ddf0b-3712109 git
|
||
|
|
|
||
|
|
cc:
|
||
|
|
@norminette -R CheckForbiddenSourceHeader
|
||
|
|
@gcc -Wall -Wextra -Werror -o a.out *.c
|
||
|
|
@./a.out
|
||
|
|
@rm -f a.out
|
||
|
|
|
||
|
|
all: clone
|
||
|
|
|