From 66cff2e98d5eb3aac96f586f2fa882b803dbebd0 Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Tue, 3 Dec 2013 14:11:43 -0800 Subject: Create common Makefile that automatically loads make rules on a per-OS basis. --- Makefile.linux | 48 ------------------------------------------------ 1 file changed, 48 deletions(-) delete mode 100644 Makefile.linux (limited to 'Makefile.linux') diff --git a/Makefile.linux b/Makefile.linux deleted file mode 100644 index a432d912..00000000 --- a/Makefile.linux +++ /dev/null @@ -1,48 +0,0 @@ -CC=gcc -CXX=g++ - -INCLUDES= -DEFS= -LIBS= - -# Uncomment for a release optimized build -CFLAGS=-Wall -O3 -fno-unroll-loops -fvisibility=hidden -fstack-protector -pthread $(INCLUDES) -DNDEBUG $(DEFS) -STRIP=strip --strip-all - -# Uncomment for a debug build -#CFLAGS=-Wall -g -pthread $(INCLUDES) -DZT_TRACE $(DEFS) -#STRIP=echo - -# Uncomment for gprof profile build -#CFLAGS=-Wall -g -pg -pthread $(INCLUDES) $(DEFS) -#STRIP=echo - -CXXFLAGS=$(CFLAGS) -fno-rtti - -include objects.mk - -all: one - -one: $(OBJS) - $(CXX) $(CXXFLAGS) -o zerotier-one main.cpp $(OBJS) $(LIBS) - $(STRIP) zerotier-one - ln -sf zerotier-one zerotier-cli - -selftest: $(OBJS) - $(CXX) $(CXXFLAGS) -o zerotier-selftest selftest.cpp $(OBJS) $(LIBS) - $(STRIP) zerotier-selftest - -idtool: $(OBJS) - $(CXX) $(CXXFLAGS) -o zerotier-idtool idtool.cpp $(OBJS) $(LIBS) - $(STRIP) zerotier-idtool - -file2lz4c: ext/lz4/lz4hc.o FORCE - $(CXX) $(CXXFLAGS) -o file2lz4c file2lz4c.cpp node/Utils.cpp node/Salsa20.cpp ext/lz4/lz4hc.o - -installer: one FORCE - ./buildinstaller.sh - -clean: - rm -rf $(OBJS) file2lz4c zerotier-* zt1-*-install installer-build build-ZeroTierUI-* - -FORCE: -- cgit v1.2.3