Skip to content
This repository has been archived by the owner on Feb 8, 2018. It is now read-only.

Commit

Permalink
make distcheck ....
Browse files Browse the repository at this point in the history
svn path=/trunk/debugger/; revision=10667
  • Loading branch information
Martin Baulig committed Jan 18, 2003
1 parent 1cc77f6 commit 2c03b1e
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 21 deletions.
4 changes: 3 additions & 1 deletion configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,9 @@ AC_TRY_LINK_FUNC(_sch_istable,,[AC_MSG_ERROR([
LIBS=$old_LIBS
AC_MSG_RESULT(ok)

AC_PATH_PROG(MONO, mono, mono)
AC_PATH_PROG(MONO, mono, [AC_MSG_ERROR([Cannot find "mono" in your PATH])])
AC_PATH_PROG(MCS, mcs, [AC_MSG_ERROR([Cannot find "mcs" in your PATH])])
AC_PATH_PROG(JAY, jay, [AC_MSG_ERROR([Cannot find "jay" in your PATH])])
AC_SUBST(PATH)


Expand Down
3 changes: 0 additions & 3 deletions frontends/scripting/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
MCS=mcs
JAY=jay

noinst_DATA = Parser.cs

Parser.cs: Parser.jay
Expand Down
3 changes: 0 additions & 3 deletions lib/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
MCS=mcs
DESTDIR=

noinst_SCRIPTS = Mono.Debugger.dll Mono.Debugger.Backend.dll @GUI_TARGETS@ Interpreter.exe

EXTRA_SCRIPTS = Debugger.exe
Expand Down
22 changes: 10 additions & 12 deletions test/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ mandir = @mandir@
includedir = @includedir@
oldincludedir = /usr/include

DESTDIR =

pkgdatadir = $(datadir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
Expand Down Expand Up @@ -76,10 +78,13 @@ EXEEXT = @EXEEXT@
GTKSHARP_PREFIX = @GTKSHARP_PREFIX@
GUI_TARGETS = @GUI_TARGETS@
HOST_CC = @HOST_CC@
JAY = @JAY@
LIBTOOL = @LIBTOOL@
LN_S = @LN_S@
MAINT = @MAINT@
MAKEINFO = @MAKEINFO@
MCS = @MCS@
MONO = @MONO@
OBJDUMP = @OBJDUMP@
OBJEXT = @OBJEXT@
PACKAGE = @PACKAGE@
Expand All @@ -94,12 +99,13 @@ VERSION = @VERSION@
server_sources = @server_sources@
top_srcdir = @top_srcdir@

MCS = mcs
MCS_FLAGS = -g
MONO = mono
DESTDIR =

TESTS = TestManagedTypes.exe

EXTRA_DIST = *.cs

CLEANFILES = *.exe *.dbg a.out
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
CONFIG_HEADER = ../config.h
CONFIG_CLEAN_FILES =
Expand Down Expand Up @@ -198,6 +204,7 @@ installdirs:
mostlyclean-generic:

clean-generic:
-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)

distclean-generic:
-rm -f Makefile $(CONFIG_CLEAN_FILES)
Expand Down Expand Up @@ -231,16 +238,9 @@ distclean-generic clean-generic maintainer-clean-generic clean \
mostlyclean distclean maintainer-clean


all: linux

linux: $(TESTS)

%.exe:%.cs
$(MCS) $(MCS_FLAGS) $<

clean:
rm -f *.exe *.dbg a.out

test:
for test in $(TESTS) ; do \
echo -n "Running $$test ... " ; \
Expand All @@ -252,8 +252,6 @@ test:
done
@echo "All tests passed."

install: all

# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:
2 changes: 0 additions & 2 deletions widgets/gtk/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
MCS=mcs

all: gtksourceview-sharp.dll

gtksourceview-sharp.dll: generated/*.cs
Expand Down

0 comments on commit 2c03b1e

Please sign in to comment.