28 OBJECTS = secdb.o getauthattr.o getexecattr.o getprofattr.o \
29 getuserattr.o chkauthattr.o
30
31 include ../../Makefile.lib
32
33 # Install this library in the root filesystem
34 include ../../Makefile.rootfs
35
36 LIBS = $(DYNLIB) $(LINTLIB)
37 LDLIBS += -lnsl -lc
38
39 SRCDIR = ../common
40 $(LINTLIB) := SRCS = $(SRCDIR)/$(LINTSRC)
41
42 CFLAGS += $(CCVERBOSE)
43 CPPFLAGS += -D_REENTRANT
44 LINTFLAGS += -DPIC
45 LINTFLAGS64 += -DPIC
46
47 CERRWARN += -_gcc=-Wno-parentheses
48 CERRWARN += -_gcc=-Wno-uninitialized
49
50 .KEEP_STATE:
51
52 all: $(LIBS)
53
54 lint: lintcheck
55
56 include ../../Makefile.targ
|
28 OBJECTS = secdb.o getauthattr.o getexecattr.o getprofattr.o \
29 getuserattr.o chkauthattr.o
30
31 include ../../Makefile.lib
32
33 # Install this library in the root filesystem
34 include ../../Makefile.rootfs
35
36 LIBS = $(DYNLIB) $(LINTLIB)
37 LDLIBS += -lnsl -lc
38
39 SRCDIR = ../common
40 $(LINTLIB) := SRCS = $(SRCDIR)/$(LINTSRC)
41
42 CFLAGS += $(CCVERBOSE)
43 CPPFLAGS += -D_REENTRANT
44 LINTFLAGS += -DPIC
45 LINTFLAGS64 += -DPIC
46
47 CERRWARN += -_gcc=-Wno-parentheses
48 CERRWARN += $(CNOWARN_UNINIT)
49
50 .KEEP_STATE:
51
52 all: $(LIBS)
53
54 lint: lintcheck
55
56 include ../../Makefile.targ
|