dynamic loading of network stack no longer needed
This commit is contained in:
15
make-linux.mk
Normal file
15
make-linux.mk
Normal file
@@ -0,0 +1,15 @@
|
||||
|
||||
# Automagically pick clang or gcc, with preference for clang
|
||||
# This is only done if we have not overridden these with an environment or CLI variable
|
||||
ifeq ($(origin CC),default)
|
||||
CC=$(shell if [ -e /usr/bin/clang ]; then echo clang; else echo gcc; fi)
|
||||
endif
|
||||
ifeq ($(origin CXX),default)
|
||||
CXX=$(shell if [ -e /usr/bin/clang++ ]; then echo clang++; else echo g++; fi)
|
||||
endif
|
||||
|
||||
|
||||
|
||||
all:
|
||||
|
||||
static_lib: $(OBJS)
|
||||
Reference in New Issue
Block a user