From: hadaq Date: Thu, 20 Jan 2011 19:20:25 +0000 (+0000) Subject: update for 64BIt support X-Git-Tag: v6.0~168 X-Git-Url: https://jspc29.x-matter.uni-frankfurt.de/git/?a=commitdiff_plain;h=a51173f62d7cd7de6fb87f2e4b8aeff4e02a7b49;p=trbnettools.git update for 64BIt support --- diff --git a/trbnetd/Makefile b/trbnetd/Makefile index ed9d373..1cb437d 100644 --- a/trbnetd/Makefile +++ b/trbnetd/Makefile @@ -1,7 +1,13 @@ # ------------ Compiler / Linker Options ------------------------------- -INCDIR = -I. +ARCH=$(shell uname -m) +ifeq ($(shell uname -m), x86_64) +CPPFLAGS = -DX86_64 +else CPPFLAGS = +endif + +INCDIR = -I. CC = gcc CFLAGS = -pipe -g -Wall -O3