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

19 lines
300 B
Makefile

CCPP = g++
CFLAGS = -I. -Wall -Wextra -O3 --std=c++17
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)