This repository has been archived on 2022-05-02. You can view files and clone it, but cannot push or open issues or pull requests.
Ecosysteme/Makefile

20 lines
394 B
Makefile

CCPP = g++
CFLAGS = -I. -Wall -Wextra -fanalyzer -O3 --std=c++17
CFLAGS2 = #-Wno-unused-variable -Wno-unused-but-set-variable -Wno-unused-parameter
SOURCES = $(shell find . -name '*.cpp')
OBJECTS = $(SOURCES:.cpp=.o)
NOM = ecosysteme
%.o: %.cpp
$(CCPP) -c -o $@ $< $(CFLAGS) $(CFLAGS2)
main: $(OBJECTS)
$(CCPP) -o $(NOM) $^ $(CFLAGS) $(CFLAGS2)
all:
main
clean:
rm *.o $(NOM)