0
0
Files
42piscine/C_09/Makefile

24 lines
380 B
Makefile
Raw Permalink Normal View History

2021-08-20 15:00:10 +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-26 12:00:00 +02:00
@git clone git@vogsphere.42lausanne.ch:vogsphere/intra-uuid-27c9dbdb-d7d5-4a65-88f3-b649e102aa89-3748576 git
2021-08-20 15:00:10 +02:00
cc:
@norminette -R CheckForbiddenSourceHeader
@gcc -Wall -Wextra -Werror -o a.out *.c
@./a.out
@rm -f a.out
all: clone