Files
klubhaus-doorbell/libraries/PNGdec/MacOS/PNG_Test/PNG_Test/Makefile
2026-02-12 00:45:31 -08:00

14 lines
234 B
Makefile

CFLAGS=-Wall -O2 -g -fsanitize=address,undefined
LIBS =
all: png_test
png_test: main.o
$(CC) main.o -fsanitize=address,undefined -g $(LIBS) -o png_test
main.o: main.cpp
$(CXX) $(CFLAGS) -c main.cpp
clean:
rm -rf *.o png_test