diff options
author | mszulecki | 2007-02-21 18:12:49 +0000 |
---|---|---|
committer | mszulecki | 2007-02-21 18:12:49 +0000 |
commit | 1898f62403ebbc9b0b06202203e3d33d90c670f9 (patch) | |
tree | be8d97456b7ce2c5e78de19bd59f95db5adafa28 /src | |
parent | 482706bca7a1b1de440395f6861ff76600e74a04 (diff) | |
download | dskel-1898f62403ebbc9b0b06202203e3d33d90c670f9.tar.gz dskel-1898f62403ebbc9b0b06202203e3d33d90c670f9.tar.bz2 |
Add more files and update makefile to actually compile stuff.
git-svn-id: http://svn.sukimashita.com/repos/dskel/trunk@4 4281df72-ff29-0410-8fee-2d9ac0c5f5a7
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 520df7e..10ed9b5 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,11 +1,12 @@ -SUFFIXES= .d - -.d.o: - $(GDC) $(DFLAGS) -c -o $@ $< +SUFFIXES: .d bin_PROGRAMS = helloworld -helloworld_SOURCES = helloworld.d +helloworld_SOURCES = helloworld.d helloworld_LDADD = $(DEPS_LIBS) +helloworld_LINK = $(GDC) -o helloworld AM_CPPFLAGS = $(DEPS_CFLAGS) + +.d.o: + $(GDC) -c -o $@ $< |