diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-10-11 20:49:07 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-10-11 20:49:07 +0000 |
commit | 99720814c3efa11dd1df59c4bd978e73b6f1ba18 (patch) | |
tree | 6b19bef8b0fd952b6869a83c17736c887267dadd /libcrypt/Makefile | |
parent | a5aa1cd19f0a3b6018324ad6f60dea71c3db4d7a (diff) |
Missed OBJS definition in libcrypt/libutil. Use := where possible
Diffstat (limited to 'libcrypt/Makefile')
-rw-r--r-- | libcrypt/Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/libcrypt/Makefile b/libcrypt/Makefile index a4b8f5980..3b98690be 100644 --- a/libcrypt/Makefile +++ b/libcrypt/Makefile @@ -26,12 +26,14 @@ include $(TOPDIR)Rules.mak CFLAGS+=$(SSP_ALL_CFLAGS) -LIB_NAME=libcrypt -AR_LIB_NAME=$(TOPDIR)lib/$(LIB_NAME).a -SO_LIB_NAME=$(TOPDIR)lib/$(LIB_NAME).so -SO_FULL_NAME=$(LIB_NAME)-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so +LIB_NAME := libcrypt +AR_LIB_NAME := $(TOPDIR)lib/$(LIB_NAME).a +SO_LIB_NAME := $(TOPDIR)lib/$(LIB_NAME).so +SO_FULL_NAME := $(LIB_NAME)-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so -CSRC = $(wildcard *.c) +CSRC := $(wildcard *.c) + +OBJS := $(patsubst %.c,%.o, $(CSRC)) ifeq ($(strip $(HAVE_SHARED)),y) all: $(SO_LIB_NAME) |