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

15
prepa_CM3/ex3_B/makefile Normal file
View File

@@ -0,0 +1,15 @@
but: ex3
OBJS = queu.o\
text.o
CC = gcc
CFLAGS = -Wall -ansi -pedantic
queu.o: queue.h
text.o: queue.h
ex3: $(OBJS)
$(CC) $(CFLAGS) -o ex3 $(OBJS)
clean:
rm -f $(OBJS) ex3