summaryrefslogtreecommitdiff
path: root/sim/ucsim/doc/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'sim/ucsim/doc/Makefile')
-rw-r--r--sim/ucsim/doc/Makefile86
1 files changed, 0 insertions, 86 deletions
diff --git a/sim/ucsim/doc/Makefile b/sim/ucsim/doc/Makefile
deleted file mode 100644
index a5c28a2..0000000
--- a/sim/ucsim/doc/Makefile
+++ /dev/null
@@ -1,86 +0,0 @@
-#
-# uCsim doc/Makefile
-#
-# (c) Drotos Daniel, Talker Bt. 1997
-#
-
-STARTYEAR = 1997
-
-SHELL = /bin/sh
-INSTALL = /usr/bin/install -c
-
-top_builddir = ..
-top_srcdir = ..
-
-prefix = /usr/local
-exec_prefix = ${prefix}
-bindir = ${exec_prefix}/bin
-libdir = ${exec_prefix}/lib
-datadir = ${datarootdir}
-datarootdir = ${prefix}/share
-includedir = ${prefix}/include
-mandir = ${datarootdir}/man
-man1dir = $(mandir)/man1
-man2dir = $(mandir)/man2
-infodir = ${datarootdir}/info
-srcdir = .
-
-#docdir = $(prefix)/share/doc/ucsim
-docdir = ${datarootdir}/doc/${PACKAGE}/ucsim
-
-
-# Compiling entire program or any subproject
-# ------------------------------------------
-all: doc
-
-doc: checkconf
-
-# Compiling and installing everything and runing test
-# ---------------------------------------------------
-install: all installdirs
- cp $(srcdir)/*.html $(DESTDIR)$(docdir)
- cp $(srcdir)/*.svg $(DESTDIR)$(docdir)
- cp $(srcdir)/*.jpg $(DESTDIR)$(docdir)
- cp $(srcdir)/*.fig $(DESTDIR)$(docdir)
-
-
-# Deleting all the installed files
-# --------------------------------
-uninstall:
- rm -rf $(DESTDIR)$(docdir)
-
-
-# Performing self-test
-# --------------------
-check:
-
-test:
-
-
-# Performing installation test
-# ----------------------------
-installcheck:
-
-
-# Creating installation directories
-# ---------------------------------
-installdirs:
- test -d $(DESTDIR)$(docdir) || $(INSTALL) -d $(DESTDIR)$(docdir)
- test -d $(DESTDIR)$(man1dir) || $(INSTALL) -d $(DESTDIR)$(man1dir)
-
-
-# Creating dependencies
-# ---------------------
-include $(srcdir)/clean.mk
-
-# My rules
-# --------
-
-# Remaking configuration
-# ----------------------
-checkconf:
- @if [ -f $(top_builddir)/devel ]; then\
- $(MAKE) -C $(top_builddir) -f conf.mk srcdir="$(srcdir)" top_builddir="$(top_builddir)" freshconf;\
- fi
-
-# End of s51.src/Makefile.in