passgen/Makefile

14 lines
323 B
Makefile
Raw Normal View History

2024-04-28 11:03:20 +00:00
TARGETS = passgen
2024-04-28 10:01:50 +00:00
2024-04-28 11:03:20 +00:00
CPPFLAGS += -I./include
CXXFLAGS += -std=c++20 -O2
CC = $(CXX) # Cheat so that linking uses the C++ compiler
2024-04-28 10:01:50 +00:00
2024-04-28 11:03:20 +00:00
all: $(TARGETS)
2024-04-28 10:01:50 +00:00
clean:
2024-04-28 11:03:20 +00:00
rm -f *.o $(TARGETS) $(BINARYOUT_TARGETS)
passgen.o: passgen.cpp ./include/pcg_random.hpp \
./include/pcg_extras.hpp ./include/pcg_uint128.hpp