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

Commit

Permalink
More automake stuff.
Browse files Browse the repository at this point in the history
svn path=/trunk/debugger/; revision=25974
  • Loading branch information
Martin Baulig committed Apr 26, 2004
1 parent a3b4226 commit d6ae72e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 37 deletions.
19 changes: 16 additions & 3 deletions test/Makefile.am
Expand Up @@ -4,11 +4,24 @@ AUTOMAKE_OPTIONS = dejagnu

MCS_FLAGS=-g

EXTRA_DIST = runtest.pl GC.cs MultiThread.cs TestAppDomain.cs \
TestInternCall.cs TestLexicalScopes.cs TestManagedTypes.cs
noinst_SCRIPTS = TestManagedTypes.exe TestAssembly.exe TestModule.dll
noinst_PROGRAMS = testnativetypes module libfoo.so

EXTRA_DIST = TestManagedTypes.cs TestAssembly.cs TestModule.cs

testnativetypes_SOURCES = testnativetypes.c

module_SOURCES = module.c
module_LDADD = -ldl

libfoo_so_SOURCES = foo.c
libfoo_so_LDFLAGS = -shared

%.exe:%.cs
$(MCS) $(MCS_FLAGS) -o $@ $<

CLEANFILES = *.exe *.dbg a.out *.log *.sum dbg.out
%.dll:%.cs
$(MCS) $(MCS_FLAGS) /target:library -o $@ $<

CLEANFILES = *.exe *.dll *.so *.dbg a.out *.log *.sum dbg.out

34 changes: 0 additions & 34 deletions test/runtest.pl

This file was deleted.

0 comments on commit d6ae72e

Please sign in to comment.