14 lines
323 B
Makefile
14 lines
323 B
Makefile
TARGETS = passgen
|
|
|
|
CPPFLAGS += -I./include
|
|
CXXFLAGS += -std=c++20 -O2
|
|
CC = $(CXX) # Cheat so that linking uses the C++ compiler
|
|
|
|
all: $(TARGETS)
|
|
|
|
clean:
|
|
rm -f *.o $(TARGETS) $(BINARYOUT_TARGETS)
|
|
|
|
passgen.o: passgen.cpp ./include/pcg_random.hpp \
|
|
./include/pcg_extras.hpp ./include/pcg_uint128.hpp
|