mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-19 02:43:07 +09:00
12 lines
151 B
Makefile
12 lines
151 B
Makefile
#brotli/dec
|
|
|
|
include ../shared.mk
|
|
|
|
CFLAGS += -Wall
|
|
|
|
OBJS = bit_reader.o decode.o dictionary.o huffman.o state.o
|
|
|
|
all : $(OBJS)
|
|
|
|
clean :
|
|
rm -f $(OBJS)
|