mirror of
https://github.com/GLEGram/GLEGram-iOS.git
synced 2026-05-01 07:18:08 +02:00
4647310322
Based on Swiftgram 12.5 (Telegram iOS 12.5). All GLEGram features ported and organized in GLEGram/ folder. Features: Ghost Mode, Saved Deleted Messages, Content Protection Bypass, Font Replacement, Fake Profile, Chat Export, Plugin System, and more. See CHANGELOG_12.5.md for full details.
31 lines
798 B
Makefile
31 lines
798 B
Makefile
clean::
|
|
$(RM) $(CLEANSUFFIXES:%=libavcodec/opus/%)
|
|
|
|
OBJS-$(CONFIG_OPUS_DECODER) += \
|
|
opus/dec.o \
|
|
opus/dec_celt.o \
|
|
opus/celt.o \
|
|
opus/pvq.o \
|
|
opus/silk.o \
|
|
opus/tab.o \
|
|
opus/dsp.o \
|
|
opus/parse.o \
|
|
opus/rc.o \
|
|
|
|
|
|
OBJS-$(CONFIG_OPUS_PARSER) += \
|
|
opus/parser.o \
|
|
opus/parse.o \
|
|
|
|
|
|
OBJS-$(CONFIG_OPUS_ENCODER) += \
|
|
opus/enc.o \
|
|
opus/enc_psy.o \
|
|
opus/celt.o \
|
|
opus/pvq.o \
|
|
opus/rc.o \
|
|
opus/tab.o \
|
|
|
|
|
|
libavcodec/opus/%.o: CPPFLAGS += -I$(SRC_PATH)/libavcodec/
|