From bab430316c0c5b88a59c1145a92c55bb55c7da11 Mon Sep 17 00:00:00 2001 From: mszulecki Date: Wed, 21 Feb 2007 17:18:01 +0000 Subject: First attempt at an autotools D helloworld. git-svn-id: http://svn.sukimashita.com/repos/dskel/trunk@2 4281df72-ff29-0410-8fee-2d9ac0c5f5a7 --- src/Makefile.am | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/Makefile.am (limited to 'src/Makefile.am') diff --git a/src/Makefile.am b/src/Makefile.am new file mode 100644 index 0000000..520df7e --- /dev/null +++ b/src/Makefile.am @@ -0,0 +1,11 @@ +SUFFIXES= .d + +.d.o: + $(GDC) $(DFLAGS) -c -o $@ $< + +bin_PROGRAMS = helloworld + +helloworld_SOURCES = helloworld.d +helloworld_LDADD = $(DEPS_LIBS) + +AM_CPPFLAGS = $(DEPS_CFLAGS) -- cgit v1.1-32-gdbae