Change cpu suffix and other file names

This commit is contained in:
Zhi Guan
2024-05-12 23:17:35 +08:00
parent 58340393b1
commit dc80b0c137
19 changed files with 1479 additions and 3278 deletions

View File

@@ -1,28 +0,0 @@
CC=gcc
CFLAGS=-fPIC -Wall
LDFLAGS=-shared
LIBS=-lgmssl -framework Security
TARGET=libsoft_sdf.so
OBJS=soft_sdf.o
all: $(TARGET)
$(OBJS): soft_sdf.c
$(CC) $(CFLAGS) -c soft_sdf.c -o $@
$(TARGET): $(OBJS)
$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS) -Wl,-exported_symbols_list,soft_sdf.exp
clean:
rm -f $(OBJS) $(TARGET)
install:
cp $(TARGET) /usr/local/lib
ldconfig
uninstall:
rm /usr/local/lib/$(TARGET)
ldconfig

File diff suppressed because it is too large Load Diff