Makefile (499B)
1 TOPDIR=../.. 2 -include $(TOPDIR)/config.mk 3 4 OBJS = \ 5 write_status.o \ 6 encode.o \ 7 control_loop.o \ 8 need_restart.o \ 9 rotate_state.o \ 10 state/inactive.o \ 11 state/dependency.o \ 12 state/setup.o \ 13 state/starting.o \ 14 state/active_foreground.o \ 15 state/active_background.o \ 16 state/active_dummy.o \ 17 state/stopping.o \ 18 state/finishing.o \ 19 state/active_pid.o \ 20 state_functions.o 21 BINS = supervise 22 INTERM = 23 MANS = 24 PAGES = 25 HEADERS = 26 LIBS = $(LIBDIR)/libutil/libutil.a 27 28 include $(TOPDIR)/mk/prog.mk