moitié tp 3

This commit is contained in:
2024-01-29 17:28:51 +01:00
parent cffb424f64
commit eb581c8a31
45 changed files with 964 additions and 16 deletions

20
DEV1.1/TP28/Makefile Normal file
View File

@@ -0,0 +1,20 @@
but : pile
OFILES = main.o\
chaine.o\
CC = gcc
CFLAGS = -Wall -ansi -pedantic -g
main.o : chaine.h
chaine.o : chaine.h
pile : $(OFILES)
$(CC) $(CFLAGS) -o pile $(OFILES)
clean :
-rm -f $(OFILES) pile
.PHONY : but clean