github.com/emc-advanced-dev/unik@v0.0.0-20190717152701-a58d3e8e33b7/docs/examples/example-includeos-unik-service/Makefile (about) 1 ################################################# 2 # IncludeOS SERVICE makefile # 3 ################################################# 4 5 # The name of your service 6 SERVICE = IncludeOS_service 7 SERVICE_NAME = My IncludeOS Service 8 9 # Your service parts 10 FILES = service.cpp 11 12 # Your disk image 13 DISK= 14 15 # Add networking driver 16 DRIVERS=virtionet 17 18 # Your own include-path 19 LOCAL_INCLUDES= 20 21 PLATFORM=unik 22 23 # IncludeOS location 24 ifndef INCLUDEOS_INSTALL 25 INCLUDEOS_INSTALL=$(HOME)/IncludeOS_install 26 endif 27 28 # Include the installed seed makefile 29 include $(INCLUDEOS_INSTALL)/Makeseed