mirror of
https://github.com/arendst/Tasmota.git
synced 2025-04-22 05:47:17 +00:00
10 lines
140 B
Makefile
10 lines
140 B
Makefile
CXX ?= g++
|
|
CFLAGS ?= -Wall -I src
|
|
|
|
test: catch.cpp catch.hpp src/base64.hpp
|
|
$(CXX) $(CFLAGS) catch.cpp -o catch
|
|
./catch
|
|
|
|
clean:
|
|
rm catch
|