Files
DEV/DEV1.1/TP28/Makefile

20 lines
234 B
Makefile
Raw Permalink Normal View History

2024-01-29 17:28:51 +01:00
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