Fork of Tangara with customizations
您最多能選擇 25 個主題 主題必須以字母或數字為開頭,可包含連接號「-」且最長為 35 個字元。
 
 
 
 
 
 
tangara-fw/lib/lua-linenoise/Makefile

15 行
329 B

OS=$(shell uname)
OBJECTS=linenoise.o encodings/utf8.o linenoiselib.o
ifeq ($(OS),Darwin)
linenoise.dylib: $(OBJECTS)
gcc -o $@ -bundle -undefined dynamic_lookup $^ $(OPT_LIB)
else
CFLAGS=-fPIC -I/usr/include/lua5.1
linenoise.so: $(OBJECTS)
gcc -o $@ -shared $^ $(OPT_LIB)
endif
clean:
rm -f *.o encodings/*.o *.so *.dylib