* corrigé un prob de portable (OSTYPE)

This commit is contained in:
glenux 2004-02-17 22:23:59 +00:00
parent 3914d44b7a
commit 608b76d0b9

View file

@ -6,13 +6,17 @@
#LIBINC=-L
#LIBS=
OSTYPE=$(shell uname -s)
OS=$(shell uname -s)
CC=gcc
CFLAGS=-Wall --static
#-O2 -ggdb
INCLUDES=-I ../src/
LIBINC=-L ../src
LIBS=-lnazgul $(OSTYPE:Linux=-lrt)
LIBS=-lnazgul
ifeq "Linux" "${OS}"
LIBS=-lnazgul -lrt
endif
PRJNAME=Libnazgul
GDATE := $(shell date +"-%Y-%m-%d_r%H")