Initial Commit
This commit is contained in:
19
Makefile
Normal file
19
Makefile
Normal file
@@ -0,0 +1,19 @@
|
||||
CXXFLAGS = -c -std=c++11
|
||||
|
||||
all: FaultFinder.o StreamManager.o
|
||||
g++ *.o -o FaultFinder.out -L /opt/pleora/ebus_sdk/Ubuntu-x86_64/lib -lPvAppUtils -lPtConvertersLib -lPvBase -lPvBuffer -lPvGenICam -lPvSystem -lPvStream -lPvDevice -lPvTransmitter -lPvVirtualDevice -lPvPersistence -lPvSerial -lPvCameraBridge -lPvGUI -lSimpleImagingLib
|
||||
|
||||
run: all
|
||||
./FaultFinder.out
|
||||
|
||||
FaultFinder.o: FaultFinder.cpp
|
||||
g++ $(CXXFLAGS) -o FaultFinder.o FaultFinder.cpp -I /opt/pleora/ebus_sdk/Ubuntu-x86_64/include
|
||||
|
||||
StreamManager.o: StreamManager.cpp
|
||||
g++ $(CXXFLAGS) -o StreamManager.o StreamManager.cpp -I /opt/pleora/ebus_sdk/Ubuntu-x86_64/include
|
||||
|
||||
debug: CXXFLAGS += -g
|
||||
debug: clean all
|
||||
|
||||
clean:
|
||||
rm -rf *.out *.o
|
||||
Reference in New Issue
Block a user