mirror of
https://github.com/Microsoft/sql-server-samples.git
synced 2025-12-08 14:58:54 +00:00
Stage initial linux vdi sample
This commit is contained in:
14
samples/features/sqlvdi-linux/Makefile
Normal file
14
samples/features/sqlvdi-linux/Makefile
Normal file
@ -0,0 +1,14 @@
|
||||
# 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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user