22 #
23 # Copyright 2004 Sun Microsystems, Inc. All rights reserved.
24 # Use is subject to license terms.
25 #
26 # Copyright (c) 2018, Joyent, Inc.
27
28 PROG= more
29 DATA= more.help
30
31 include ../Makefile.cmd
32
33 LDLIBS += -lcurses
34
35 ROOTLIBDATA= $(DATA:%=$(ROOTLIB)/%)
36 CPPFLAGS += -D_FILE_OFFSET_BITS=64
37
38 $(ROOTLIBDATA) := FILEMODE = 0644
39
40 CFLAGS += $(CCVERBOSE)
41 CERRWARN += -_gcc=-Wno-parentheses
42 CERRWARN += -_gcc=-Wno-uninitialized
43 CERRWARN += -_gcc=-Wno-clobbered
44
45 # not linted
46 SMATCH=off
47
48 .KEEP_STATE:
49
50 all: $(PROG) $(DATA)
51
52 install: all $(ROOTPROG) $(ROOTLIBDATA)
53 $(RM) $(ROOTBIN)/page
54 $(LN) $(ROOTPROG) $(ROOTBIN)/page
55
56 clean:
57
58 lint: lint_PROG
59
60 include ../Makefile.targ
|
22 #
23 # Copyright 2004 Sun Microsystems, Inc. All rights reserved.
24 # Use is subject to license terms.
25 #
26 # Copyright (c) 2018, Joyent, Inc.
27
28 PROG= more
29 DATA= more.help
30
31 include ../Makefile.cmd
32
33 LDLIBS += -lcurses
34
35 ROOTLIBDATA= $(DATA:%=$(ROOTLIB)/%)
36 CPPFLAGS += -D_FILE_OFFSET_BITS=64
37
38 $(ROOTLIBDATA) := FILEMODE = 0644
39
40 CFLAGS += $(CCVERBOSE)
41 CERRWARN += -_gcc=-Wno-parentheses
42 CERRWARN += $(CNOWARN_UNINIT)
43 CERRWARN += -_gcc=-Wno-clobbered
44
45 # not linted
46 SMATCH=off
47
48 .KEEP_STATE:
49
50 all: $(PROG) $(DATA)
51
52 install: all $(ROOTPROG) $(ROOTLIBDATA)
53 $(RM) $(ROOTBIN)/page
54 $(LN) $(ROOTPROG) $(ROOTBIN)/page
55
56 clean:
57
58 lint: lint_PROG
59
60 include ../Makefile.targ
|