mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-14 05:13:02 +01:00
Makefile: add per-system defaults
This is only an empty structure, but I hope it will help for add per-system defaults in future
This commit is contained in:
parent
773a3f4abf
commit
c53600b550
49
src/Makefile
49
src/Makefile
@ -4,18 +4,61 @@ VERSION = $(TOXIC_VERSION)_r$(REV)
|
|||||||
|
|
||||||
LIBS = libtoxcore ncurses
|
LIBS = libtoxcore ncurses
|
||||||
|
|
||||||
CFLAGS = -DTOXICVER="\"$(VERSION)\"" -std=gnu99 -pthread
|
CFLAGS ?= $(USER_CFLAGS) -DTOXICVER="\"$(VERSION)\"" -std=gnu99 -pthread
|
||||||
LDFLAGS = -ldl -lresolv
|
LDFLAGS ?= $(USER_LDFLAGS)
|
||||||
DESTDIR ?= /usr/local
|
DESTDIR ?= /usr/local
|
||||||
|
|
||||||
OBJ = chat.o chat_commands.o configdir.o dns.o execute.o
|
OBJ = chat.o chat_commands.o configdir.o dns.o execute.o
|
||||||
OBJ += file_senders.o friendlist.o global_commands.o groupchat.o line_info.o
|
OBJ += file_senders.o friendlist.o global_commands.o groupchat.o line_info.o
|
||||||
OBJ += log.o misc_tools.o prompt.o settings.o toxic.o toxic_strings.o windows.o
|
OBJ += log.o misc_tools.o prompt.o settings.o toxic.o toxic_strings.o windows.o
|
||||||
|
|
||||||
|
# Variables for audio support
|
||||||
AUDIO_LIBS = libtoxav openal
|
AUDIO_LIBS = libtoxav openal
|
||||||
AUDIO_CFLAGS = -D_SUPPORT_AUDIO
|
AUDIO_CFLAGS = -D_SUPPORT_AUDIO
|
||||||
AUDIO_OBJ = device.o audio_call.o
|
AUDIO_OBJ = device.o audio_call.o
|
||||||
|
|
||||||
|
# Check on wich system we are running
|
||||||
|
ifeq ($(OS), Windows_NT)
|
||||||
|
CFLAGS +=
|
||||||
|
LDFLAGS +=
|
||||||
|
ifeq ($(PROCESSOR_ARCHITECTURE), AMD64)
|
||||||
|
CFLAGS +=
|
||||||
|
LDFLAGS +=
|
||||||
|
endif
|
||||||
|
ifeq ($(PROCESSOR_ARCHITECTURE), x86)
|
||||||
|
CFLAGS +=
|
||||||
|
LDFLAGS +=
|
||||||
|
endif
|
||||||
|
else
|
||||||
|
UNAME_S = $(shell uname -s)
|
||||||
|
ifeq ($(UNAME_S), Linux)
|
||||||
|
CFLAGS +=
|
||||||
|
LDFLAGS += -ldl -lresolv
|
||||||
|
endif
|
||||||
|
ifeq ($(UNAME_S), Darwin)
|
||||||
|
CFLAGS +=
|
||||||
|
LDFLAGS +=
|
||||||
|
endif
|
||||||
|
ifeq ($(UNAME_S), Solaris)
|
||||||
|
CFLAGS +=
|
||||||
|
LDFLAGS +=
|
||||||
|
endif
|
||||||
|
UNAME_P = $(shell uname -p)
|
||||||
|
ifeq ($(UNAME_P), x86_64)
|
||||||
|
CFLAGS +=
|
||||||
|
LDFLAGS +=
|
||||||
|
endif
|
||||||
|
ifneq ($(filter %86, $(UNAME_P)),)
|
||||||
|
CFLAGS +=
|
||||||
|
LDFLAGS +=
|
||||||
|
endif
|
||||||
|
ifneq ($(filter arm%, $(UNAME_P)),)
|
||||||
|
CFLAGS +=
|
||||||
|
LDFLAGS +=
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
# Check if we can build audio
|
||||||
CHECK_AUDIO_LIBS = $(shell pkg-config $(AUDIO_LIBS) || echo -n "error")
|
CHECK_AUDIO_LIBS = $(shell pkg-config $(AUDIO_LIBS) || echo -n "error")
|
||||||
ifneq ($(CHECK_AUDIO_LIBS), error)
|
ifneq ($(CHECK_AUDIO_LIBS), error)
|
||||||
LIBS += $(AUDIO_LIBS)
|
LIBS += $(AUDIO_LIBS)
|
||||||
@ -30,6 +73,7 @@ $(warning WARNING -- $(MISSING_AUDIO_LIBS))
|
|||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
# Check if we can build Toxic
|
||||||
CHECK_LIBS = $(shell pkg-config $(LIBS) || echo -n "error")
|
CHECK_LIBS = $(shell pkg-config $(LIBS) || echo -n "error")
|
||||||
ifneq ($(CHECK_LIBS), error)
|
ifneq ($(CHECK_LIBS), error)
|
||||||
CFLAGS += $(shell pkg-config --cflags $(LIBS))
|
CFLAGS += $(shell pkg-config --cflags $(LIBS))
|
||||||
@ -44,6 +88,7 @@ $(error ERROR)
|
|||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
# Targets
|
||||||
all: toxic
|
all: toxic
|
||||||
|
|
||||||
toxic: $(OBJ)
|
toxic: $(OBJ)
|
||||||
|
Loading…
Reference in New Issue
Block a user