diff options
author | lantw44 <lantw44@gmail.com> | 2012-08-30 17:43:31 +0800 |
---|---|---|
committer | lantw44 <lantw44@gmail.com> | 2012-08-30 17:43:31 +0800 |
commit | 3e44e2e2f1feea48bf916e98a6fe3a85869857ba (patch) | |
tree | 8239ede98f8914a7e8494a0ffcc9a868a511f8cc | |
parent | 0e2b42c1ff5d56ddf1368da56605797b6c9b6cbd (diff) | |
download | l4basic-3e44e2e2f1feea48bf916e98a6fe3a85869857ba.tar.gz l4basic-3e44e2e2f1feea48bf916e98a6fe3a85869857ba.tar.zst l4basic-3e44e2e2f1feea48bf916e98a6fe3a85869857ba.zip |
修正 Makefile 中的靜態函式庫檔名錯誤
-rw-r--r-- | l4arg/Makefile | 2 | ||||
-rw-r--r-- | l4bds/Makefile | 2 | ||||
-rw-r--r-- | l4darr/Makefile | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/l4arg/Makefile b/l4arg/Makefile index 001a7e9..59e00a4 100644 --- a/l4arg/Makefile +++ b/l4arg/Makefile @@ -3,7 +3,7 @@ AR=ar RM=rm CFLAGS=-Wall -g -I. OBJ= -LIBFILE=l4arg.a +LIBFILE=libl4arg.a .PHONY: all clean diff --git a/l4bds/Makefile b/l4bds/Makefile index 07c4235..817c11d 100644 --- a/l4bds/Makefile +++ b/l4bds/Makefile @@ -3,7 +3,7 @@ AR=ar RM=rm CFLAGS=-Wall -g -I. OBJ= -LIBFILE=l4bds.a +LIBFILE=libl4bds.a .PHONY: all clean diff --git a/l4darr/Makefile b/l4darr/Makefile index ecb479c..3bc40c7 100644 --- a/l4darr/Makefile +++ b/l4darr/Makefile @@ -3,7 +3,7 @@ AR=ar RM=rm CFLAGS=-Wall -g -I. OBJ=d1array.o d1arrstr.o d2array.o -LIBFILE=l4darr.a +LIBFILE=libl4darr.a .PHONY: all clean |