moitié tp 3
This commit is contained in:
20
DEV1.1/TP28/Makefile
Normal file
20
DEV1.1/TP28/Makefile
Normal 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
|
||||
Reference in New Issue
Block a user