This commit is contained in:
2023-10-23 13:23:36 +02:00
parent 667dae6f1a
commit 322b22f9bf
5711 changed files with 72953 additions and 0 deletions

View File

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