1*1b191cb5SApple OSS DistributionsCXXFLAGS=-Wall -std=c++20 -Os -arch x86_64 -arch arm64 2*1b191cb5SApple OSS Distributions 3*1b191cb5SApple OSS DistributionsTARGETS = kt-dump 4*1b191cb5SApple OSS Distributions 5*1b191cb5SApple OSS Distributionsall: $(TARGETS) 6*1b191cb5SApple OSS Distributions 7*1b191cb5SApple OSS Distributionskt-dump: kt-dump.cpp 8*1b191cb5SApple OSS Distributions ${CXX} ${CXXFLAGS} -o $@ $? 9*1b191cb5SApple OSS Distributionsclean: 10*1b191cb5SApple OSS Distributions rm -rf $(TARGETS) 11