11 lines
171 B
Makefile
11 lines
171 B
Makefile
|
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)
|
||
|
|