28 lines
607 B
Makefile
28 lines
607 B
Makefile
#
|
|
# rcsid = "$Header: /usr/cvsroot/magic-8.0/net2ir/Makefile,v 1.1.1.1 2008/02/03 20:43:50 tim Exp $"
|
|
#
|
|
|
|
MODULE = net2ir
|
|
# Provided by configure: the module's source dir + the build top.
|
|
# defs.mak sees `srcdir` already set and skips its own srcdir derivation.
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
MAGICDIR = @top_builddir@
|
|
SRCS = net2ir.c
|
|
|
|
EXTRA_LIBS = ${MAGICDIR}/utils/libutils.a
|
|
|
|
include ${MAGICDIR}/defs.mak
|
|
|
|
tcl-main:
|
|
echo "Nothing to do here"
|
|
|
|
main: net2ir
|
|
|
|
install: $(DESTDIR)${INSTALL_BINDIR}/${MODULE}${EXEEXT}
|
|
|
|
install-tcl:
|
|
echo "Nothing to do here"
|
|
|
|
include ${MAGICDIR}/rules.mak
|