diff options
author | mszulecki | 2007-02-22 18:26:55 +0000 |
---|---|---|
committer | mszulecki | 2007-02-22 18:26:55 +0000 |
commit | fdecd53fa0fc7c2a9c85f8c5cd2503d1174d7310 (patch) | |
tree | c90a5c9be224508f874b2fae24790a5abc1eb543 /src | |
parent | d543ff7f6c155952cb50c2bd1589546265004b3a (diff) | |
download | dskel-fdecd53fa0fc7c2a9c85f8c5cd2503d1174d7310.tar.gz dskel-fdecd53fa0fc7c2a9c85f8c5cd2503d1174d7310.tar.bz2 |
Add ugly HACK for now and actually make it compile.
git-svn-id: http://svn.sukimashita.com/repos/dskel/trunk@12 4281df72-ff29-0410-8fee-2d9ac0c5f5a7
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 48a7307..c68ffec 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -4,12 +4,14 @@ bin_PROGRAMS = helloworld helloworld_SOURCES = helloworld.d helloworld_LDADD = $(DEPS_LIBS) -helloworld_LINK = $(GDC) -o helloworld +helloworld_LINK = $(GDC) $(DFLAGS) -o helloworld $(top_srcdir)/config.d AM_CPPFLAGS = $(DEPS_CFLAGS) .d.o: - $(GDC) $(DFLAGS) -c -o $@ $< + $(GDC) $(DFLAGS) -I$(top_srcdir) -c -o $@ $< .d.so: - $(GDC) $(DFLAGS) -c -shared -fPIC -o $@ $< + $(GDC) $(DFLAGS) -I$(top_srcdir) -c -shared -fPIC -o $@ $< +DISTCLEANFILES = \ + Makefile.in |