update
This commit is contained in:
18
DEV/DEV1.1/CM3/Q3_Réduction/Makefile
Normal file
18
DEV/DEV1.1/CM3/Q3_Réduction/Makefile
Normal 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
|
Reference in New Issue
Block a user