21 lines
554 B
Makefile
21 lines
554 B
Makefile
# Makefile.cpg
|
|
MAKEFILEPARTS=$(srcdir)/../Makefile.comm ../Makefile.cfg \
|
|
$(srcdir)/Makefile.sub $(srcdir)/../Makefile.cpg $(srcdir)/Makefile.dep
|
|
|
|
all: $(PROG) $(MANPAGES)
|
|
|
|
$(PROG): $(OBJS) $(XLIBS)
|
|
$(LINK.c) -o $@ $(OBJS) $(XLIBS) $(LIBS) $(MLIB)
|
|
|
|
install_bin: install_prog
|
|
install_prog: $(PROG)
|
|
install_data: install_man
|
|
install_man: $(MANPAGES)
|
|
uninstall_sub: uninstall_prog uninstall_man
|
|
depend: depend_src
|
|
depend.temp: $(GENSRCS) $(YTABC)
|
|
distfiles: $(YTABC)
|
|
TAGS: TAGS_src
|
|
TAGS_src: $(CCSRCS) $(CSRCS) $(GRAM) $(HDRS)
|
|
Makefile: $(MAKEFILEPARTS)
|