Fix the space problem on the right side of the equal sign.

This commit is contained in:
2019-08-06 18:01:24 +08:00
parent c91f6c093f
commit 3bf9e8941f
5 changed files with 47 additions and 17 deletions

View File

@@ -3,13 +3,13 @@ CC := $(CROSS_COMPILE)gcc
STRIP := $(CROSS_COMPILE)strip
AR := $(CROSS_COMPILE)ar
CFLAGS += -g -Wall
LIBS = libini.so
DLIB = libini.so
SLIB = libini.a
all: libini.o
$(CC) $(CFLAGS) -FPIC -shared $^ -o $(LIBS)
$(CC) $(CFLAGS) -FPIC -shared $^ -o $(DLIB)
$(AR) -rc $(SLIB) $^
clean:
rm -rf *.o
rm $(LIBS) $(SLIB)
rm $(DLIB) $(SLIB)