This commit is contained in:
2023-10-12 16:07:28 +02:00
parent 458013fe74
commit 82cf22952d
6 changed files with 162 additions and 0 deletions

10
SCR3.1/TP6/stack/Makefile Normal file
View File

@@ -0,0 +1,10 @@
stack.o : stack.c
gcc -c stack.c
main.o : main.c stack.h
gcc -c main.c
main : main.o stack.o
gcc -o main main.o stack.o
all : main