1*6a54128fSAndroid Build Coastguard Worker# 2*6a54128fSAndroid Build Coastguard Worker# Makefile for lib/ss 3*6a54128fSAndroid Build Coastguard Worker# 4*6a54128fSAndroid Build Coastguard Worker 5*6a54128fSAndroid Build Coastguard Workersrcdir = @srcdir@ 6*6a54128fSAndroid Build Coastguard Workertop_srcdir = @top_srcdir@ 7*6a54128fSAndroid Build Coastguard WorkerVPATH = @srcdir@ 8*6a54128fSAndroid Build Coastguard Workertop_builddir = ../.. 9*6a54128fSAndroid Build Coastguard Workermy_dir = lib/ss 10*6a54128fSAndroid Build Coastguard WorkerINSTALL = @INSTALL@ 11*6a54128fSAndroid Build Coastguard WorkerMKDIR_P = @MKDIR_P@ 12*6a54128fSAndroid Build Coastguard WorkerDLOPEN_LIB = @DLOPEN_LIB@ 13*6a54128fSAndroid Build Coastguard Worker 14*6a54128fSAndroid Build Coastguard Worker@MCONFIG@ 15*6a54128fSAndroid Build Coastguard Worker 16*6a54128fSAndroid Build Coastguard WorkerLIBRARY= libss 17*6a54128fSAndroid Build Coastguard WorkerLIBDIR= ss 18*6a54128fSAndroid Build Coastguard Worker 19*6a54128fSAndroid Build Coastguard WorkerELF_VERSION = 2.0 20*6a54128fSAndroid Build Coastguard WorkerELF_SO_VERSION = 2 21*6a54128fSAndroid Build Coastguard WorkerELF_IMAGE = libss 22*6a54128fSAndroid Build Coastguard WorkerELF_MYDIR = ss 23*6a54128fSAndroid Build Coastguard WorkerELF_INSTALL_DIR = $(root_libdir) 24*6a54128fSAndroid Build Coastguard WorkerELF_OTHER_LIBS = -lcom_err $(DLOPEN_LIB) 25*6a54128fSAndroid Build Coastguard Worker 26*6a54128fSAndroid Build Coastguard WorkerBSDLIB_VERSION = 1.0 27*6a54128fSAndroid Build Coastguard WorkerBSDLIB_IMAGE = libss 28*6a54128fSAndroid Build Coastguard WorkerBSDLIB_MYDIR = ss 29*6a54128fSAndroid Build Coastguard WorkerBSDLIB_INSTALL_DIR = $(root_libdir) 30*6a54128fSAndroid Build Coastguard Worker 31*6a54128fSAndroid Build Coastguard WorkerTAGS=etags 32*6a54128fSAndroid Build Coastguard WorkerMK_CMDS= _SS_DIR_OVERRIDE=$(srcdir) ./mk_cmds 33*6a54128fSAndroid Build Coastguard WorkerCOMPILE_ET= _ET_DIR_OVERRIDE=$(srcdir)/../et ../et/compile_et 34*6a54128fSAndroid Build Coastguard Worker 35*6a54128fSAndroid Build Coastguard Worker.c.o: 36*6a54128fSAndroid Build Coastguard Worker $(E) " CC $<" 37*6a54128fSAndroid Build Coastguard Worker $(Q) $(CC) $(ALL_CFLAGS_STLIB) -c $< 38*6a54128fSAndroid Build Coastguard Worker $(Q) $(CHECK_CMD) $(ALL_CFLAGS) $< 39*6a54128fSAndroid Build Coastguard Worker $(Q) $(CPPCHECK_CMD) $(CPPFLAGS) $< 40*6a54128fSAndroid Build Coastguard Worker@PROFILE_CMT@ $(Q) $(CC) $(ALL_CFLAGS_STLIB) -g -pg -o profiled/$*.o -c $< 41*6a54128fSAndroid Build Coastguard Worker@ELF_CMT@ $(Q) $(CC) $(ALL_CFLAGS_SHLIB) -DSHARED_ELF_LIB -fPIC -shared -o elfshared/$*.o -c $< 42*6a54128fSAndroid Build Coastguard Worker@BSDLIB_CMT@ $(Q) $(CC) $(ALL_CFLAGS_SHLIB) $(BSDLIB_PIC_FLAG) -o pic/$*.o -c $< 43*6a54128fSAndroid Build Coastguard Worker 44*6a54128fSAndroid Build Coastguard Worker# for the library 45*6a54128fSAndroid Build Coastguard Worker 46*6a54128fSAndroid Build Coastguard Worker# with ss_err.o first, ss_err.h should get rebuilt first too. should not 47*6a54128fSAndroid Build Coastguard Worker# be relying on this, though. 48*6a54128fSAndroid Build Coastguard WorkerOBJS= ss_err.o \ 49*6a54128fSAndroid Build Coastguard Worker std_rqs.o \ 50*6a54128fSAndroid Build Coastguard Worker invocation.o help.o \ 51*6a54128fSAndroid Build Coastguard Worker execute_cmd.o listen.o parse.o error.o prompt.o \ 52*6a54128fSAndroid Build Coastguard Worker request_tbl.o list_rqs.o pager.o requests.o \ 53*6a54128fSAndroid Build Coastguard Worker data.o get_readline.o 54*6a54128fSAndroid Build Coastguard Worker 55*6a54128fSAndroid Build Coastguard WorkerSRCS= $(srcdir)/invocation.c $(srcdir)/help.c \ 56*6a54128fSAndroid Build Coastguard Worker $(srcdir)/execute_cmd.c $(srcdir)/listen.c $(srcdir)/parse.c \ 57*6a54128fSAndroid Build Coastguard Worker $(srcdir)/error.c $(srcdir)/prompt.c $(srcdir)/request_tbl.c \ 58*6a54128fSAndroid Build Coastguard Worker $(srcdir)/list_rqs.c $(srcdir)/pager.c $(srcdir)/requests.c \ 59*6a54128fSAndroid Build Coastguard Worker $(srcdir)/data.c $(srcdir)/get_readline.c 60*6a54128fSAndroid Build Coastguard Worker 61*6a54128fSAndroid Build Coastguard Workerall:: mk_cmds 62*6a54128fSAndroid Build Coastguard Worker 63*6a54128fSAndroid Build Coastguard Worker@MAKEFILE_LIBRARY@ 64*6a54128fSAndroid Build Coastguard Worker@MAKEFILE_ELF@ 65*6a54128fSAndroid Build Coastguard Worker@MAKEFILE_BSDLIB@ 66*6a54128fSAndroid Build Coastguard Worker@MAKEFILE_PROFILE@ 67*6a54128fSAndroid Build Coastguard Worker 68*6a54128fSAndroid Build Coastguard WorkerCODE= $(SRCS) $(MKCMDSFILES) 69*6a54128fSAndroid Build Coastguard Worker 70*6a54128fSAndroid Build Coastguard WorkerMKCMDSOBJS= mk_cmds.o utils.o options.o ct.tab.o cmd_tbl.lex.o 71*6a54128fSAndroid Build Coastguard Worker 72*6a54128fSAndroid Build Coastguard WorkerMKCMDSFILES= mk_cmds.c utils.c options.c ct.y cmd_tbl.lex.l 73*6a54128fSAndroid Build Coastguard Worker 74*6a54128fSAndroid Build Coastguard WorkerMKCMDSCSRCS= mk_cmds.c utils.c options.c ct.tab.c cmd_tbl.lex.c 75*6a54128fSAndroid Build Coastguard Worker 76*6a54128fSAndroid Build Coastguard Worker 77*6a54128fSAndroid Build Coastguard WorkerHFILES= ss.h ss_internal.h 78*6a54128fSAndroid Build Coastguard WorkerSHARE_FILES= ct_c.awk ct_c.sed 79*6a54128fSAndroid Build Coastguard Worker 80*6a54128fSAndroid Build Coastguard WorkerINSTALL_HFILES= ss.h 81*6a54128fSAndroid Build Coastguard Worker 82*6a54128fSAndroid Build Coastguard Worker# for 'tags' and dependencies 83*6a54128fSAndroid Build Coastguard Worker 84*6a54128fSAndroid Build Coastguard WorkerCFILES= $(SRCS) $(MKCMDSCSRCS) test_ss.c 85*6a54128fSAndroid Build Coastguard Worker 86*6a54128fSAndroid Build Coastguard Worker# for building archives 87*6a54128fSAndroid Build Coastguard Worker 88*6a54128fSAndroid Build Coastguard WorkerFILES= $(SRCS) $(MKCMDSFILES) $(HFILES) \ 89*6a54128fSAndroid Build Coastguard Worker ss_err.et std_rqs.ct Makefile \ 90*6a54128fSAndroid Build Coastguard Worker test_ss.c ss 91*6a54128fSAndroid Build Coastguard Worker 92*6a54128fSAndroid Build Coastguard Workerall:: libss.a ss.pc # libss_p.a lint 93*6a54128fSAndroid Build Coastguard Worker 94*6a54128fSAndroid Build Coastguard Workerstd_rqs.c: std_rqs.ct mk_cmds 95*6a54128fSAndroid Build Coastguard Worker $(E) " MK_CMDS $@" 96*6a54128fSAndroid Build Coastguard Worker $(Q) DIR=$(srcdir) $(MK_CMDS) $(srcdir)/std_rqs.ct 97*6a54128fSAndroid Build Coastguard Worker 98*6a54128fSAndroid Build Coastguard Workerstd_rqs.o: ss_err.h 99*6a54128fSAndroid Build Coastguard Worker 100*6a54128fSAndroid Build Coastguard Workertest_cmd.c: test_cmd.ct mk_cmds 101*6a54128fSAndroid Build Coastguard Worker $(E) " MK_CMDS $@" 102*6a54128fSAndroid Build Coastguard Worker $(Q) DIR=$(srcdir) $(MK_CMDS) $(srcdir)/test_cmd.ct 103*6a54128fSAndroid Build Coastguard Worker 104*6a54128fSAndroid Build Coastguard Workerss_err.c ss_err.h: ss_err.et 105*6a54128fSAndroid Build Coastguard Worker $(E) " COMPILE_ET ss_err.et" 106*6a54128fSAndroid Build Coastguard Worker $(Q) $(COMPILE_ET) $(srcdir)/ss_err.et 107*6a54128fSAndroid Build Coastguard Worker 108*6a54128fSAndroid Build Coastguard Workerct.tab.c ct.tab.h: ct.y 109*6a54128fSAndroid Build Coastguard Worker $(RM) -f ct.tab.* y.* 110*6a54128fSAndroid Build Coastguard Worker $(YACC) -d $(srcdir)/ct.y 111*6a54128fSAndroid Build Coastguard Worker $(MV) -f y.tab.c ct.tab.c 112*6a54128fSAndroid Build Coastguard Worker $(MV) -f y.tab.h ct.tab.h 113*6a54128fSAndroid Build Coastguard Worker 114*6a54128fSAndroid Build Coastguard Worker#libss.o: $(OBJS) 115*6a54128fSAndroid Build Coastguard Worker# $(LD) -r -s -o $@ $(OBJS) 116*6a54128fSAndroid Build Coastguard Worker# $(CHMOD) -x $@ 117*6a54128fSAndroid Build Coastguard Worker 118*6a54128fSAndroid Build Coastguard Workermk_cmds: $(DEP_SUBSTITUTE) $(srcdir)/mk_cmds.sh.in 119*6a54128fSAndroid Build Coastguard Worker $(E) " SUBST $@" 120*6a54128fSAndroid Build Coastguard Worker $(Q) $(SUBSTITUTE) $(srcdir)/mk_cmds.sh.in mk_cmds 121*6a54128fSAndroid Build Coastguard Worker $(Q) $(CHMOD) +x mk_cmds 122*6a54128fSAndroid Build Coastguard Worker 123*6a54128fSAndroid Build Coastguard Workerss.pc: $(srcdir)/ss.pc.in $(top_builddir)/config.status 124*6a54128fSAndroid Build Coastguard Worker $(E) " CONFIG.STATUS $@" 125*6a54128fSAndroid Build Coastguard Worker $(Q) cd $(top_builddir); CONFIG_FILES=lib/ss/ss.pc ./config.status 126*6a54128fSAndroid Build Coastguard Worker 127*6a54128fSAndroid Build Coastguard Workerinstalldirs:: 128*6a54128fSAndroid Build Coastguard Worker $(E) " MKDIR_P $(libdir) $(includedir)/ss $(datadir)/ss $(bindir) $(pkgconfigdir) $(man1dir)" 129*6a54128fSAndroid Build Coastguard Worker $(Q) $(MKDIR_P) $(DESTDIR)$(libdir) \ 130*6a54128fSAndroid Build Coastguard Worker $(DESTDIR)$(includedir)/ss $(DESTDIR)$(datadir)/ss \ 131*6a54128fSAndroid Build Coastguard Worker $(DESTDIR)$(bindir) $(DESTDIR)$(pkgconfigdir) \ 132*6a54128fSAndroid Build Coastguard Worker $(DESTDIR)$(man1dir) 133*6a54128fSAndroid Build Coastguard Worker 134*6a54128fSAndroid Build Coastguard Workerinstall:: libss.a $(INSTALL_HFILES) installdirs ss_err.h mk_cmds ss.pc 135*6a54128fSAndroid Build Coastguard Worker $(E) " INSTALL_DATA $(DESTDIR)$(libdir)/libss.a" 136*6a54128fSAndroid Build Coastguard Worker $(Q) $(INSTALL_DATA) libss.a $(DESTDIR)$(libdir)/libss.a 137*6a54128fSAndroid Build Coastguard Worker -$(Q) $(RANLIB) $(DESTDIR)$(libdir)/libss.a 138*6a54128fSAndroid Build Coastguard Worker $(Q) $(CHMOD) $(LIBMODE) $(DESTDIR)$(libdir)/libss.a 139*6a54128fSAndroid Build Coastguard Worker $(Q) $(RM) -f $(DESTDIR)$(includedir)/ss/* 140*6a54128fSAndroid Build Coastguard Worker $(Q) for i in $(INSTALL_HFILES); do \ 141*6a54128fSAndroid Build Coastguard Worker echo " INSTALL_DATA $(DESTDIR)$(includedir)/ss/$$i"; \ 142*6a54128fSAndroid Build Coastguard Worker $(INSTALL_DATA) $(srcdir)/$$i $(DESTDIR)$(includedir)/ss/$$i; \ 143*6a54128fSAndroid Build Coastguard Worker done 144*6a54128fSAndroid Build Coastguard Worker $(E) " INSTALL_DATA $(includedir)/ss/ss_err.h" 145*6a54128fSAndroid Build Coastguard Worker $(Q) $(INSTALL_DATA) ss_err.h $(DESTDIR)$(includedir)/ss/ss_err.h 146*6a54128fSAndroid Build Coastguard Worker $(Q) for i in $(SHARE_FILES); do \ 147*6a54128fSAndroid Build Coastguard Worker echo " INSTALL_DATA $(DESTDIR)$(datadir)/ss/$$i"; \ 148*6a54128fSAndroid Build Coastguard Worker $(INSTALL_DATA) $(srcdir)/$$i $(DESTDIR)$(datadir)/ss/$$i; \ 149*6a54128fSAndroid Build Coastguard Worker done 150*6a54128fSAndroid Build Coastguard Worker $(E) " INSTALL $(bindir)/mk_cmds" 151*6a54128fSAndroid Build Coastguard Worker $(Q) $(INSTALL) mk_cmds $(DESTDIR)$(bindir)/mk_cmds 152*6a54128fSAndroid Build Coastguard Worker $(E) " INSTALL_DATA $(man1dir)/mk_cmds.1" 153*6a54128fSAndroid Build Coastguard Worker $(Q) $(INSTALL_DATA) $(srcdir)/mk_cmds.1 $(DESTDIR)$(man1dir)/mk_cmds.1 154*6a54128fSAndroid Build Coastguard Worker $(E) " INSTALL_DATA $(pkgconfigdir)/ss.pc" 155*6a54128fSAndroid Build Coastguard Worker $(Q) $(INSTALL_DATA) ss.pc $(DESTDIR)$(pkgconfigdir)/ss.pc 156*6a54128fSAndroid Build Coastguard Worker 157*6a54128fSAndroid Build Coastguard Workeruninstall:: 158*6a54128fSAndroid Build Coastguard Worker $(RM) -f $(DESTDIR)$(libdir)/libss.a $(DESTDIR)$(bindir)/mk_cmds \ 159*6a54128fSAndroid Build Coastguard Worker $(DESTDIR)$(pkgconfigdir)/ss.pc \ 160*6a54128fSAndroid Build Coastguard Worker $(DESTDIR)$(man1dir)/mk_cmds.1 161*6a54128fSAndroid Build Coastguard Worker $(RM) -rf $(DESTDIR)$(includedir)/ss $(DESTDIR)$(datadir)/ss 162*6a54128fSAndroid Build Coastguard Worker 163*6a54128fSAndroid Build Coastguard Workertest_ss: test_ss.o test_cmd.o $(DEPLIBSS) $(DEPLIBCOM_ERR) 164*6a54128fSAndroid Build Coastguard Worker $(E) " LD $@" 165*6a54128fSAndroid Build Coastguard Worker $(Q) $(CC) -o $@ test_ss.o test_cmd.o $(ALL_CFLAGS) $(ALL_LDFLAGS) \ 166*6a54128fSAndroid Build Coastguard Worker $(LIBSS) $(LIBCOM_ERR) $(SYSLIBS) 167*6a54128fSAndroid Build Coastguard Worker 168*6a54128fSAndroid Build Coastguard Workerfullcheck check:: all test_ss 169*6a54128fSAndroid Build Coastguard Worker $(E) " RUN TEST test_ss" 170*6a54128fSAndroid Build Coastguard Worker -@($(TESTENV) ./test_ss -f $(srcdir)/test_script > test_out 2>&1; exit 0) 171*6a54128fSAndroid Build Coastguard Worker $(Q) if diff test_out $(srcdir)/test_script_expected > test.diff; then \ 172*6a54128fSAndroid Build Coastguard Worker true ; else echo "Regression test for ss library failed!"; exit 1 ; fi 173*6a54128fSAndroid Build Coastguard Worker 174*6a54128fSAndroid Build Coastguard Workerclean:: 175*6a54128fSAndroid Build Coastguard Worker $(RM) -f ../libss.a libss.a mk_cmds ss_err.h ss_err.c std_rqs.c \ 176*6a54128fSAndroid Build Coastguard Worker tst_cmds.c test_ss test_out test.diff *.o *~ \#* *.bak core \ 177*6a54128fSAndroid Build Coastguard Worker test_cmd.c ss.pc 178*6a54128fSAndroid Build Coastguard Worker 179*6a54128fSAndroid Build Coastguard Workermostlyclean:: clean 180*6a54128fSAndroid Build Coastguard Workerdistclean:: clean 181*6a54128fSAndroid Build Coastguard Worker $(RM) -f .depend Makefile ss.pc \ 182*6a54128fSAndroid Build Coastguard Worker $(srcdir)/TAGS $(srcdir)/Makefile.in.old 183*6a54128fSAndroid Build Coastguard Worker 184*6a54128fSAndroid Build Coastguard Worker# 185*6a54128fSAndroid Build Coastguard Worker# Hack to parallel makes recognize dependencies correctly. 186*6a54128fSAndroid Build Coastguard Worker# 187*6a54128fSAndroid Build Coastguard Worker$(top_builddir)/lib/ss/ss_err.h: ss_err.h 188*6a54128fSAndroid Build Coastguard Worker 189*6a54128fSAndroid Build Coastguard Worker$(OBJS): subdirs 190*6a54128fSAndroid Build Coastguard Worker 191*6a54128fSAndroid Build Coastguard Worker# +++ Dependency line eater +++ 192*6a54128fSAndroid Build Coastguard Worker# 193*6a54128fSAndroid Build Coastguard Worker# Makefile dependencies follow. This must be the last section in 194*6a54128fSAndroid Build Coastguard Worker# the Makefile.in file 195*6a54128fSAndroid Build Coastguard Worker# 196*6a54128fSAndroid Build Coastguard Workerinvocation.o: $(srcdir)/invocation.c $(top_builddir)/lib/config.h \ 197*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/dirpaths.h $(srcdir)/ss_internal.h $(srcdir)/ss.h \ 198*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h 199*6a54128fSAndroid Build Coastguard Workerhelp.o: $(srcdir)/help.c $(top_builddir)/lib/config.h \ 200*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/dirpaths.h $(srcdir)/ss_internal.h $(srcdir)/ss.h \ 201*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h 202*6a54128fSAndroid Build Coastguard Workerexecute_cmd.o: $(srcdir)/execute_cmd.c $(top_builddir)/lib/config.h \ 203*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/dirpaths.h $(srcdir)/ss_internal.h $(srcdir)/ss.h \ 204*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h 205*6a54128fSAndroid Build Coastguard Workerlisten.o: $(srcdir)/listen.c $(top_builddir)/lib/config.h \ 206*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/dirpaths.h $(srcdir)/ss_internal.h $(srcdir)/ss.h \ 207*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h 208*6a54128fSAndroid Build Coastguard Workerparse.o: $(srcdir)/parse.c $(top_builddir)/lib/config.h \ 209*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/dirpaths.h $(srcdir)/ss_internal.h $(srcdir)/ss.h \ 210*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h 211*6a54128fSAndroid Build Coastguard Workererror.o: $(srcdir)/error.c $(top_builddir)/lib/config.h \ 212*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/et/com_err.h \ 213*6a54128fSAndroid Build Coastguard Worker $(srcdir)/ss_internal.h $(srcdir)/ss.h $(top_builddir)/lib/ss/ss_err.h 214*6a54128fSAndroid Build Coastguard Workerprompt.o: $(srcdir)/prompt.c $(top_builddir)/lib/config.h \ 215*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/dirpaths.h $(srcdir)/ss_internal.h $(srcdir)/ss.h \ 216*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h 217*6a54128fSAndroid Build Coastguard Workerrequest_tbl.o: $(srcdir)/request_tbl.c $(top_builddir)/lib/config.h \ 218*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/dirpaths.h $(srcdir)/ss_internal.h $(srcdir)/ss.h \ 219*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h 220*6a54128fSAndroid Build Coastguard Workerlist_rqs.o: $(srcdir)/list_rqs.c $(top_builddir)/lib/config.h \ 221*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/dirpaths.h $(srcdir)/ss_internal.h $(srcdir)/ss.h \ 222*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h 223*6a54128fSAndroid Build Coastguard Workerpager.o: $(srcdir)/pager.c $(top_builddir)/lib/config.h \ 224*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/dirpaths.h $(srcdir)/ss_internal.h $(srcdir)/ss.h \ 225*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h 226*6a54128fSAndroid Build Coastguard Workerrequests.o: $(srcdir)/requests.c $(top_builddir)/lib/config.h \ 227*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/dirpaths.h $(srcdir)/ss_internal.h $(srcdir)/ss.h \ 228*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h 229*6a54128fSAndroid Build Coastguard Workerdata.o: $(srcdir)/data.c $(top_builddir)/lib/config.h \ 230*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/dirpaths.h $(srcdir)/ss_internal.h $(srcdir)/ss.h \ 231*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h 232*6a54128fSAndroid Build Coastguard Workerget_readline.o: $(srcdir)/get_readline.c $(top_builddir)/lib/config.h \ 233*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/dirpaths.h $(srcdir)/ss_internal.h $(srcdir)/ss.h \ 234*6a54128fSAndroid Build Coastguard Worker $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h 235