32
33 include ../../Makefile.fstype
34
35 OBJS= $(TYPEPROG).o
36 SRCS= $(TYPEPROG).c
37 POFILE= $(TYPEPROG).po
38
39 CFLAGS += $(CCVERBOSE)
40 CSTD= $(CSTD_GNU99)
41
42 # This is a multi-thread program but Nevada
43 # no longer needs -lthread
44 LDLIBS += -lsmbfs -lumem
45
46 CPPFLAGS += -I$(SRC)/lib/libsmbfs \
47 -I$(SRC)/uts/common/smbclnt -I$(SRC)/uts/common
48
49 # Debugging
50 ${NOT_RELEASE_BUILD} CPPFLAGS += -DDEBUG
51
52 # uncomment these for dbx debugging
53 #COPTFLAG = -g
54 #CTF_FLAGS =
55 #CTFCONVERT_O=
56 #CTFMERGE_LIB=
57
58 all: $(TYPEPROG)
59
60 catalog: $(POFILE)
61
62 lint: lint_SRCS
63
64 clean:
65 $(RM) $(OBJS) $(POFILE)
66
67 .KEEP_STATE:
|
32
33 include ../../Makefile.fstype
34
35 OBJS= $(TYPEPROG).o
36 SRCS= $(TYPEPROG).c
37 POFILE= $(TYPEPROG).po
38
39 CFLAGS += $(CCVERBOSE)
40 CSTD= $(CSTD_GNU99)
41
42 # This is a multi-thread program but Nevada
43 # no longer needs -lthread
44 LDLIBS += -lsmbfs -lumem
45
46 CPPFLAGS += -I$(SRC)/lib/libsmbfs \
47 -I$(SRC)/uts/common/smbclnt -I$(SRC)/uts/common
48
49 # Debugging
50 ${NOT_RELEASE_BUILD} CPPFLAGS += -DDEBUG
51
52 all: $(TYPEPROG)
53
54 catalog: $(POFILE)
55
56 lint: lint_SRCS
57
58 clean:
59 $(RM) $(OBJS) $(POFILE)
60
61 .KEEP_STATE:
|