41 pkgerr.o keystore.o p12lib.o \
42 vfpops.o fmkdir.o pkgstr.o \
43 handlelocalfs.o pkgserv.o
44
45
46 # include library definitions
47 include $(SRC)/lib/Makefile.lib
48
49 SRCDIR= ../common
50
51 POFILE = libpkg.po
52 MSGFILES = $(OBJECTS:%.o=../common/%.i)
53 CLEANFILES += $(MSGFILES)
54
55 # This library is NOT lint clean
56
57 # openssl forces us to ignore dubious pointer casts, thanks to its clever
58 # use of macros for stack management.
59 LINTFLAGS= -umx -errtags \
60 -erroff=E_BAD_PTR_CAST_ALIGN,E_BAD_PTR_CAST
61 $(LINTLIB):= SRCS = $(SRCDIR)/$(LINTSRC)
62
63
64 LIBS = $(DYNLIB) $(LINTLIB)
65
66
67 LDLIBS += -lc -lssl -lwanboot -lcrypto -lscf -ladm
68
69 CFLAGS += $(CCVERBOSE)
70 CERRWARN += -_gcc=-Wno-unused-label
71 CERRWARN += -_gcc=-Wno-parentheses
72 CERRWARN += -_gcc=-Wno-uninitialized
73 CERRWARN += -_gcc=-Wno-clobbered
74 CERRWARN += -_gcc=-Wno-switch
75 CERRWARN += -_gcc=-Wno-unused-value
76 CPPFLAGS += -I$(SRCDIR) -D_FILE_OFFSET_BITS=64
77
78 .KEEP_STATE:
79
80 all: $(LIBS)
|
41 pkgerr.o keystore.o p12lib.o \
42 vfpops.o fmkdir.o pkgstr.o \
43 handlelocalfs.o pkgserv.o
44
45
46 # include library definitions
47 include $(SRC)/lib/Makefile.lib
48
49 SRCDIR= ../common
50
51 POFILE = libpkg.po
52 MSGFILES = $(OBJECTS:%.o=../common/%.i)
53 CLEANFILES += $(MSGFILES)
54
55 # This library is NOT lint clean
56
57 # openssl forces us to ignore dubious pointer casts, thanks to its clever
58 # use of macros for stack management.
59 LINTFLAGS= -umx -errtags \
60 -erroff=E_BAD_PTR_CAST_ALIGN,E_BAD_PTR_CAST
61 LINTFLAGS += -erroff=E_SUPPRESSION_DIRECTIVE_UNUSED
62 LINTFLAGS64 += -erroff=E_SUPPRESSION_DIRECTIVE_UNUSED
63 $(LINTLIB):= SRCS = $(SRCDIR)/$(LINTSRC)
64
65
66 LIBS = $(DYNLIB) $(LINTLIB)
67
68
69 LDLIBS += -lc -lssl -lwanboot -lcrypto -lscf -ladm
70
71 CFLAGS += $(CCVERBOSE)
72 CERRWARN += -_gcc=-Wno-unused-label
73 CERRWARN += -_gcc=-Wno-parentheses
74 CERRWARN += -_gcc=-Wno-uninitialized
75 CERRWARN += -_gcc=-Wno-clobbered
76 CERRWARN += -_gcc=-Wno-switch
77 CERRWARN += -_gcc=-Wno-unused-value
78 CPPFLAGS += -I$(SRCDIR) -D_FILE_OFFSET_BITS=64
79
80 .KEEP_STATE:
81
82 all: $(LIBS)
|