Atlas - Makefile
Home / usr / vishash Lines: 1 | Size: 413 bytes [Download] [Show on GitHub] [Search similar files] [Raw] [Raw (proxy)][FILE BEGIN]1 2CXX = g++ 3CXXFLAGS = -Wall -O2 -std=c++17 4LDFLAGS = -lcrypto 5SRCS = src/main.cpp src/crypto.cpp src/image.cpp src/render.cpp 6 7OBJS = $(SRCS:src/%.cpp=build/%.o) 8TARGET = randomart 9 10all: $(TARGET) 11 12$(TARGET): $(OBJS) 13 $(CXX) $(OBJS) -o build/$(TARGET) $(LDFLAGS) 14 15build/%.o: src/%.cpp 16 @mkdir -p build 17 $(CXX) $(CXXFLAGS) -c $< -o $@ 18 19clean: 20 rm -rf build $(TARGET) 21 22rebuild: clean all 23 24.PHONY: all clean rebuild 25[FILE END](C) 2025 0x4248 (C) 2025 4248 Media and 4248 Systems, All part of 0x4248 See LICENCE files for more information. Not all files are by 0x4248 always check Licencing.