debut pile
This commit is contained in:
19
DEV1.1/CM2/Makefile
Normal file
19
DEV1.1/CM2/Makefile
Normal file
@@ -0,0 +1,19 @@
|
||||
but : separation
|
||||
|
||||
OFILES = carre.o\
|
||||
lightness.o
|
||||
|
||||
CC = gcc
|
||||
|
||||
CFLAGS = -Wall -ansi -pedantic
|
||||
|
||||
carre.o : lightness.h
|
||||
lightness.o : lightness.h
|
||||
|
||||
separation : $(OFILES)
|
||||
$(CC) $(CFLAGS) -o separation $(OFILES)
|
||||
|
||||
clean :
|
||||
-rm -f $(OFILES) separation
|
||||
|
||||
.PHONY : but clean
|
||||
Reference in New Issue
Block a user