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

21 lines
389 B
Makefile
Raw Normal View History

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