AT28C256-rpi-util/cpp-sim-src/Makefile

11 lines
171 B
Makefile
Raw Normal View History

2023-10-26 19:00:17 +02:00
CFLAGS = -std=c++20
LFLAGS = -lbcm2835
TOOLS = eeprom_sim test/test_out test/test_in test/test_edge
default: $(TOOLS)
%: %.cpp
g++ $< -o $@ $(CFLAGS) $(LFLAGS)