libdspl-2.0/Makefile.dirs

20 wiersze
367 B
Makefile
Czysty Zwykły widok Historia

2018-03-12 20:48:32 +00:00
CC = gcc
INC_DIR = include
RELEASE_DIR = release/lib
2018-03-12 20:48:32 +00:00
ifeq ($(OS),Windows_NT)
DSPL_LIBNAME = libdspl.dll
DEF_OS = WIN_OS
LFLAGS = -lm
else
UNAME_S := $(shell uname -s)
UNAME_P := $(shell uname -p)
ifeq ($(UNAME_S),Linux)
DSPL_LIBNAME = libdspl.so
DEF_OS = LINUX_OS
LFLAGS = -lm -ldl
2018-03-12 20:48:32 +00:00
endif
endif