1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-11-14 23:33:02 +01:00
toxic/src/Makefile

49 lines
1.1 KiB
Makefile
Raw Normal View History

SUPPORT_AUDIO ?= 0
2014-06-23 15:34:32 +02:00
LIBS = libtoxcore ncurses
CFLAGS = -std=gnu99 -pthread
2014-06-23 15:34:32 +02:00
LDFLAGS = -ldl -lresolv
DESTDIR=/usr/local
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 += log.o misc_tools.o prompt.o settings.o toxic.o toxic_strings.o windows.o
ifeq ($(SUPPORT_AUDIO), 1)
2014-06-23 15:34:32 +02:00
CHECK_OPENAL = $(shell pkg-config openal || echo -n "no_audio")
CHECK_TOXAV = $(shell pkg-config libtoxav || echo -n "no_audio")
ifeq (no_audio, $(filter no_audio, $(CHECK_OPENAL) $(CHECK_TOXAV)))
SUPPORT_AUDIO = 0
else
CFLAGS += -D_SUPPORT_AUDIO
OBJ += device.o audio_call.o
LIBS += openal libtoxav
endif
endif
2014-06-23 14:07:23 +02:00
ifneq ($(LIBS),)
CFLAGS += $(shell pkg-config --cflags $(LIBS))
LDFLAGS += $(shell pkg-config --libs $(LIBS))
endif
all: toxic
toxic: $(OBJ)
$(CC) $(CFLAGS) -o toxic $(OBJ) $(LDFLAGS)
install: toxic
mkdir -pv $(DESTDIR)/bin
install -m 0755 toxic $(DESTDIR)/bin
-include $(OBJ:.o=.d)
%.o: %.c
$(CC) $(CFLAGS) -o $*.o -c $*.c
$(CC) -MM $(CFLAGS) $*.c > $*.d
clean:
rm -rf *.d *.o toxic
.PHONY: clean all install