Skip to content

Commit

Permalink
bit of cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
floe committed Jan 28, 2022
1 parent f683675 commit 430f912
Show file tree
Hide file tree
Showing 16 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
TARGETS=surfacecast
LIBS=gstreamer-1.0 gstreamer-app-1.0 gstreamer-video-1.0 glib-2.0 opencv4

CCFLAGS=-std=c++11 -O3 -Wall -ggdb -pg -I /usr/include/eigen3/ -I include/ $(shell pkg-config --cflags ${LIBS})
CCFLAGS=-std=c++11 -O3 -Wall -ggdb -pg -I /usr/include/eigen3/ -I src/ $(shell pkg-config --cflags ${LIBS})
LDFLAGS=-std=c++11 -O3 -Wall -ggdb -pg -lpthread $(shell pkg-config --libs ${LIBS})

# check for K4A include files
Expand All @@ -20,11 +20,11 @@ endif

all: ${TARGETS}

%.o: %.cpp
%.o: src/%.cpp
g++ -c -o $@ $< ${CCFLAGS}

surfacecast: surfacecast.o Camera.o V4L2.o SUR40.o VirtualCam.o ${OBJECTS}
g++ -o $@ $^ ${LDFLAGS}

clean:
-rm *.o ${TARGETS}
-rm *.o gmon.out ${TARGETS}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 430f912

Please sign in to comment.