1
0
mirror of https://github.com/Microsoft/sql-server-samples.git synced 2025-12-08 14:58:54 +00:00
Files
sql-server-samples/samples/features/sqlvdi-linux/Makefile
2017-03-13 18:18:45 -07:00

15 lines
319 B
Makefile

# A simple Makefile to build the VDI sample code
#
EXECUTABLE=vdipipesample
LD_FLAGS=-luuid -lrt -lpthread -lsqlvdi
LD_LIBRARY_PATH=/opt/mssql/lib
$(EXECUTABLE): vdipipesample.cpp vdi.h vdierror.h
clang++ -o $(EXECUTABLE) -g -std=c++11 vdipipesample.cpp $(LD_FLAGS) -L $(LD_LIBRARY_PATH)
clean:
rm $(EXECUTABLE)