mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-15 02:33:02 +01:00
49 lines
1.1 KiB
Makefile
49 lines
1.1 KiB
Makefile
SUPPORT_AUDIO ?= 0
|
|
|
|
LIBS = libtoxcore ncurses
|
|
|
|
CFLAGS = -std=gnu99 -pthread
|
|
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)
|
|
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
|
|
|
|
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
|