133
134 # install this library in the root filesystem
135 include ../../Makefile.rootfs
136
137 SRCDIR = ../screen
138
139 LIBS = $(DYNLIB) $(LINTLIB)
140
141 # definitions for lint
142
143 $(LINTLIB):= SRCS=../screen/llib-lcurses
144
145 LINTOUT= lint.out
146 LINTSRC= $(LINTLIB:%.ln=%)
147
148 CLEANFILES += $(LINTOUT) $(LINTLIB)
149
150 CFLAGS += $(CCVERBOSE)
151
152 CERRWARN += -_gcc=-Wno-char-subscripts
153 CERRWARN += -_gcc=-Wno-uninitialized
154 CERRWARN += -_gcc=-Wno-parentheses
155
156 # not linted
157 SMATCH=off
158
159 LDLIBS += -lc
160
161 CPPFLAGS += -I../screen -I../../common/inc
162
163 ED = ed
164 RM = rm -f
165
166 #
167 # If and when somebody gets around to messaging this, CLOBBERFILE should not
168 # be cleared (so that any .po file will be clobbered.
169 #
170 CLOBBERFILES= libcurses.so libcurses.so$(VERS)
171
172 all: $(LIBS)
173
|
133
134 # install this library in the root filesystem
135 include ../../Makefile.rootfs
136
137 SRCDIR = ../screen
138
139 LIBS = $(DYNLIB) $(LINTLIB)
140
141 # definitions for lint
142
143 $(LINTLIB):= SRCS=../screen/llib-lcurses
144
145 LINTOUT= lint.out
146 LINTSRC= $(LINTLIB:%.ln=%)
147
148 CLEANFILES += $(LINTOUT) $(LINTLIB)
149
150 CFLAGS += $(CCVERBOSE)
151
152 CERRWARN += -_gcc=-Wno-char-subscripts
153 CERRWARN += $(CNOWARN_UNINIT)
154 CERRWARN += -_gcc=-Wno-parentheses
155
156 # not linted
157 SMATCH=off
158
159 LDLIBS += -lc
160
161 CPPFLAGS += -I../screen -I../../common/inc
162
163 ED = ed
164 RM = rm -f
165
166 #
167 # If and when somebody gets around to messaging this, CLOBBERFILE should not
168 # be cleared (so that any .po file will be clobbered.
169 #
170 CLOBBERFILES= libcurses.so libcurses.so$(VERS)
171
172 all: $(LIBS)
173
|