Add support for MUSL on Linux
This commit is contained in:
29
deps/jamlib/Makefile.linux-musl
vendored
Normal file
29
deps/jamlib/Makefile.linux-musl
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
CC = cc $(CPPFLAGS) $(CFLAGS) -D__LINUX__ $(LDFLAGS) -Wall
|
||||
AR = ar -ru
|
||||
RM = rm -f
|
||||
|
||||
OBJS = crc32.o mbase.o message.o lastread.o subpack.o structrw.o
|
||||
|
||||
jamlib.a : $(OBJS)
|
||||
$(AR) jamlib.a $(OBJS)
|
||||
|
||||
crc32.o: crc32.c jam.h
|
||||
$(CC) -c crc32.c -o crc32.o
|
||||
|
||||
mbase.o: mbase.c jam.h
|
||||
$(CC) -c mbase.c -o mbase.o -D__MUSL__=1
|
||||
|
||||
message.o: message.c jam.h
|
||||
$(CC) -c message.c -o message.o
|
||||
|
||||
lastread.o: lastread.c jam.h
|
||||
$(CC) -c lastread.c -o lastread.o
|
||||
|
||||
subpack.o: subpack.c jam.h
|
||||
$(CC) -c subpack.c -o subpack.o
|
||||
|
||||
structrw.o: structrw.c jam.h
|
||||
$(CC) -c structrw.c -o structrw.o
|
||||
|
||||
clean:
|
||||
$(RM) *.o *.a
|
Reference in New Issue
Block a user