Files
DEV/DEV1.1/CM2/Makefile

20 lines
271 B
Makefile
Raw Permalink Normal View History

2024-01-08 14:05:33 +01:00
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