This commit is contained in:
r.koeppe
2024-05-14 02:14:13 +02:00
parent 0052d3984b
commit 2d22ccd2d6
1423 changed files with 354055 additions and 7 deletions

View File

@ -0,0 +1,22 @@
CXX = g++
INCLUDES = -I ../../include
CPPFLAGS = -Wall
SOURCES = main.cpp
all: getting_started_with_rtcm
clean:
rm -f main.o
rm -f getting_started_with_rtcm
cd ../.. && make clean
getting_started_with_rtcm: main.o ../../build/bin/libvncxx.a
$(CXX) -o getting_started_with_rtcm main.o -L ../../build/bin -lvncxx -lpthread
../../build/bin/libvncxx.a:
cd ../.. && make
main.o: main.cpp
$(CXX) $(CPPFLAGS) $(INCLUDES) -c $< -o $@