| # |
| # Makefile for lib/ss |
| # |
| |
| srcdir = @srcdir@ |
| top_srcdir = @top_srcdir@ |
| VPATH = @srcdir@ |
| top_builddir = ../.. |
| INSTALL = @INSTALL@ |
| |
| @MCONFIG@ |
| |
| LIBRARY= libss |
| LIBDIR= ss |
| |
| DLL_ADDRESS = 0x66880000 |
| DLL_JUMPSIZE = 0x1000 |
| DLL_GOTSIZE = 0x1000 |
| DLL_VERSION = 1.0 |
| DLL_IMAGE = libss |
| DLL_STUB = libss |
| DLL_LIBS = -L../.. -lcom_err |
| DLL_MYDIR = ss |
| DLL_INSTALL_DIR = $(libdir) |
| |
| ELF_VERSION = 2.0 |
| ELF_SO_VERSION = 2 |
| ELF_IMAGE = libss |
| ELF_MYDIR = ss |
| ELF_INSTALL_DIR = $(libdir) |
| |
| BSDLIB_VERSION = 1.0 |
| BSDLIB_IMAGE = libss |
| BSDLIB_MYDIR = ss |
| BSDLIB_INSTALL_DIR = $(libdir) |
| |
| TAGS=etags |
| COMPILE_ET=../et/compile_et |
| MK_CMDS=./mk_cmds |
| |
| # -I.. is so that ss/ss_err.h works |
| # -I$(srcdir)/.. is so that ss/ss.h works |
| # -I$(srcdir)/../et is so com_err.h works |
| XTRA_CFLAGS=-DPOSIX_SIGNALS -I$(srcdir)/../et |
| |
| .c.o: |
| $(CC) $(CFLAGS) -c $< |
| @PROFILE_CMT@ $(CC) $(CFLAGS) -pg -o profiled/$*.o -c $< |
| @CHECKER_CMT@ $(CC) $(CFLAGS) -checker -g -o checker/$*.o -c $< |
| @DLL_CMT@ (export JUMP_DIR=`pwd`/jump; $(CC) -B$(JUMP_PREFIX) $(CFLAGS) \ |
| @DLL_CMT@ -o jump/$*.o -c $<) |
| @ELF_CMT@ $(CC) $(CFLAGS) -fPIC -o elfshared/$*.o -c $< |
| @BSDLIB_CMT@ $(CC) $(CFLAGS) -fpic -o pic/$*.o -c $< |
| |
| # for the library |
| |
| LIB= libss.a |
| |
| # with ss_err.o first, ss_err.h should get rebuilt first too. should not |
| # be relying on this, though. |
| OBJS= ss_err.o \ |
| std_rqs.o \ |
| invocation.o help.o \ |
| execute_cmd.o listen.o parse.o error.o prompt.o \ |
| request_tbl.o list_rqs.o pager.o requests.o \ |
| data.o |
| |
| SRCS= $(srcdir)/invocation.c $(srcdir)/help.c \ |
| $(srcdir)/execute_cmd.c $(srcdir)/listen.c $(srcdir)/parse.c \ |
| $(srcdir)/error.c $(srcdir)/prompt.c $(srcdir)/request_tbl.c \ |
| $(srcdir)/list_rqs.c $(srcdir)/pager.c $(srcdir)/requests.c \ |
| $(srcdir)/data.c |
| |
| all:: mk_cmds |
| |
| @MAKEFILE_LIBRARY@ |
| @MAKEFILE_DLL@ |
| @MAKEFILE_ELF@ |
| @MAKEFILE_BSDLIB@ |
| @MAKEFILE_PROFILE@ |
| @MAKEFILE_CHECKER@ |
| |
| CODE= $(SRCS) $(MKCMDSFILES) |
| |
| MKCMDSOBJS= mk_cmds.o utils.o options.o ct.tab.o cmd_tbl.lex.o |
| |
| MKCMDSFILES= mk_cmds.c utils.c options.c ct.y cmd_tbl.lex.l |
| |
| MKCMDSCSRCS= mk_cmds.c utils.c options.c ct.tab.c cmd_tbl.lex.c |
| |
| |
| HFILES= ss.h ss_internal.h copyright.h |
| |
| # for 'tags' and dependencies |
| |
| CFILES= $(SRCS) $(MKCMDSCSRCS) test_ss.c |
| |
| # for building archives |
| |
| FILES= $(SRCS) $(MKCMDSFILES) $(HFILES) \ |
| ss_err.et std_rqs.ct Makefile \ |
| test_ss.c ss mit-sipb-copyright.h copyright.h |
| |
| all:: libss.a # libss_p.a lint |
| |
| std_rqs.c: std_rqs.ct $(MK_CMDS) |
| $(MK_CMDS) $(srcdir)/std_rqs.ct |
| |
| ss_err.c ss_err.h: ss_err.et |
| $(COMPILE_ET) $(srcdir)/ss_err.et |
| |
| ct.tab.c ct.tab.h: ct.y |
| $(RM) -f ct.tab.* y.* |
| $(YACC) -d $(srcdir)/ct.y |
| $(MV) -f y.tab.c ct.tab.c |
| $(MV) -f y.tab.h ct.tab.h |
| |
| #libss.o: $(OBJS) |
| # $(LD) -r -s -o $@ $(OBJS) |
| # $(CHMOD) -x $@ |
| |
| mk_cmds: mk_cmds.sh |
| $(CP) mk_cmds.sh $@ && $(CHMOD) +x mk_cmds |
| |
| installdirs:: |
| $(top_srcdir)/mkinstalldirs $(DESTDIR)$(ulibdir) \ |
| $(DESTDIR)$(includedir)/ss |
| |
| install:: libss.a $(HFILES) copyright.h installdirs |
| $(INSTALL_DATA) libss.a $(DESTDIR)$(ulibdir)/libss.a |
| $(CHMOD) 644 $(DESTDIR)$(ulibdir)/libss.a |
| -$(RANLIB) $(DESTDIR)$(ulibdir)/libss.a |
| $(CHMOD) $(LIBMODE) $(DESTDIR)$(ulibdir)/libss.a |
| $(RM) -f $(includedir)/ss/* |
| for i in $(HFILES) copyright.h; do \ |
| $(INSTALL_DATA) $(srcdir)/$$i $(DESTDIR)$(includedir)/ss/$$i; \ |
| done |
| |
| uninstall:: |
| $(RM) -f $(ulibdir)/libss.a |
| $(RM) -rf $(includedir)/ss |
| |
| clean:: |
| $(RM) -f ../libss.a libss.a mk_cmds |
| $(RM) -f *.o *~ \#* *.bak core |
| |
| mostlyclean:: clean |
| distclean:: clean |
| $(RM) -f .depend ss_err.h ss_err.c mk_cmds.sh Makefile |
| |
| # +++ Dependency line eater +++ |
| # |
| # Makefile dependencies follow. This must be the last section in |
| # the Makefile.in file |
| # |
| invocation.o: $(srcdir)/invocation.c $(srcdir)/ss_internal.h \ |
| $(srcdir)/ss.h \ |
| $(srcdir)/mit-sipb-copyright.h $(top_builddir)/lib/ss/ss_err.h \ |
| $(srcdir)/copyright.h |
| help.o: $(srcdir)/help.c \ |
| $(srcdir)/ss_internal.h \ |
| $(srcdir)/ss.h $(srcdir)/mit-sipb-copyright.h \ |
| $(top_builddir)/lib/ss/ss_err.h $(srcdir)/copyright.h |
| execute_cmd.o: $(srcdir)/execute_cmd.c $(srcdir)/ss_internal.h \ |
| $(srcdir)/ss.h \ |
| $(srcdir)/mit-sipb-copyright.h $(top_builddir)/lib/ss/ss_err.h \ |
| $(srcdir)/copyright.h |
| listen.o: $(srcdir)/listen.c $(srcdir)/copyright.h \ |
| $(srcdir)/ss_internal.h \ |
| $(srcdir)/ss.h $(srcdir)/mit-sipb-copyright.h \ |
| $(top_builddir)/lib/ss/ss_err.h |
| parse.o: $(srcdir)/parse.c \ |
| $(srcdir)/ss_internal.h \ |
| $(srcdir)/ss.h \ |
| $(srcdir)/mit-sipb-copyright.h $(top_builddir)/lib/ss/ss_err.h \ |
| $(srcdir)/copyright.h |
| error.o: $(srcdir)/error.c \ |
| $(srcdir)/copyright.h \ |
| $(srcdir)/../et/com_err.h \ |
| $(srcdir)/ss_internal.h \ |
| $(srcdir)/ss.h \ |
| $(srcdir)/mit-sipb-copyright.h $(top_builddir)/lib/ss/ss_err.h |
| prompt.o: $(srcdir)/prompt.c $(srcdir)/copyright.h \ |
| $(srcdir)/ss_internal.h \ |
| $(srcdir)/ss.h \ |
| $(srcdir)/mit-sipb-copyright.h $(top_builddir)/lib/ss/ss_err.h |
| request_tbl.o: $(srcdir)/request_tbl.c \ |
| $(srcdir)/copyright.h $(srcdir)/ss_internal.h \ |
| $(srcdir)/ss.h $(srcdir)/mit-sipb-copyright.h \ |
| $(top_builddir)/lib/ss/ss_err.h |
| list_rqs.o: $(srcdir)/list_rqs.c $(srcdir)/copyright.h \ |
| $(srcdir)/ss_internal.h \ |
| $(srcdir)/ss.h $(srcdir)/mit-sipb-copyright.h \ |
| $(top_builddir)/lib/ss/ss_err.h |
| pager.o: $(srcdir)/pager.c \ |
| $(srcdir)/ss_internal.h \ |
| $(srcdir)/ss.h \ |
| $(srcdir)/mit-sipb-copyright.h $(top_builddir)/lib/ss/ss_err.h \ |
| $(srcdir)/copyright.h |
| requests.o: $(srcdir)/requests.c $(srcdir)/mit-sipb-copyright.h \ |
| $(srcdir)/ss_internal.h \ |
| $(srcdir)/ss.h \ |
| $(top_builddir)/lib/ss/ss_err.h |
| data.o: $(srcdir)/data.c \ |
| $(srcdir)/ss_internal.h \ |
| $(srcdir)/ss.h \ |
| $(srcdir)/mit-sipb-copyright.h $(top_builddir)/lib/ss/ss_err.h \ |
| $(srcdir)/copyright.h |