23 # Use is subject to license terms.
24 #
25
26 LIBRARY = libdlpi.a
27 VERS = .1
28 OBJECTS = libdlpi.o
29
30 include ../../Makefile.lib
31
32 # install this library in the root filesystem
33 include ../../Makefile.rootfs
34
35 LIBS = $(DYNLIB) $(LINTLIB)
36
37 LDLIBS += -lc -linetutil -ldladm
38
39 SRCDIR = ../common
40 $(LINTLIB) := SRCS = $(SRCDIR)/$(LINTSRC)
41
42 CFLAGS += $(CCVERBOSE)
43 CERRWARN += -_gcc=-Wno-uninitialized
44 CPPFLAGS += -I$(SRCDIR) -D_REENTRANT
45
46 .KEEP_STATE:
47
48 all: $(LIBS)
49
50 lint: lintcheck
51
52 include $(SRC)/lib/Makefile.targ
|
23 # Use is subject to license terms.
24 #
25
26 LIBRARY = libdlpi.a
27 VERS = .1
28 OBJECTS = libdlpi.o
29
30 include ../../Makefile.lib
31
32 # install this library in the root filesystem
33 include ../../Makefile.rootfs
34
35 LIBS = $(DYNLIB) $(LINTLIB)
36
37 LDLIBS += -lc -linetutil -ldladm
38
39 SRCDIR = ../common
40 $(LINTLIB) := SRCS = $(SRCDIR)/$(LINTSRC)
41
42 CFLAGS += $(CCVERBOSE)
43 CERRWARN += $(CNOWARN_UNINIT)
44 CPPFLAGS += -I$(SRCDIR) -D_REENTRANT
45
46 .KEEP_STATE:
47
48 all: $(LIBS)
49
50 lint: lintcheck
51
52 include $(SRC)/lib/Makefile.targ
|