diff options
author | Dave Olson <olson@cumulusnetworks.com> | 2017-06-21 15:13:02 -0700 |
---|---|---|
committer | Dave Olson <olson@cumulusnetworks.com> | 2017-06-21 15:23:44 -0700 |
commit | 5c6df6ac03f04f195c6f3bb9fe8b1725428de129 (patch) | |
tree | 53cab0eda333806208770dad755bdce109a02052 /Makefile | |
parent | b9b2e397455dd2cacbd1729941d8e898de41400d (diff) | |
download | libnss-mapuser-5c6df6ac03f04f195c6f3bb9fe8b1725428de129.tar.gz libnss-mapuser-5c6df6ac03f04f195c6f3bb9fe8b1725428de129.zip |
Random small fixes with everything now working
Fixed trailing whitespace
Also fixed man page formatting issue
Added misc to debian/control
changelog modified to cumulus cl3u1
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -17,19 +17,19 @@ else endif ifeq (,$(filter nostrip,$(DEB_BUILD_OPTIONS))) STRIP = strip - FVISIBILITY = -fvisibility=hidden + FVISIBILITY = -fvisibility=hidden else - STRIP=echo Nostrip + STRIP=echo Nostrip FVISIBILITY = -fvisibility=default endif -CPPFLAGS = -D_FORTIFY_SOURCE=2 +CPPFLAGS = -D_FORTIFY_SOURCE=2 CFLAGS = $(CPPFLAGS) ${OPTFLAGS} -fPIC -fstack-protector-strong \ -Wformat -Werror=format-security -Wall $(FVISIBILITY) LDFLAGS = -shared -fPIC -DPIC \ -Wl,-z -Wl,relro -Wl,-z -Wl,now -Wl,-soname -Wl,$@ -all: $(NSSNAMELIB) $(NSSUIDLIB) +all: $(NSSNAMELIB) $(NSSUIDLIB) $(NSSUIDLIB): $(UID_SOURCE:.c=.o) $(CC) $(LDFLAGS) $^ -o $@ |