aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2012-07-19 21:13:55 +0000
committerMike Buland <eichlan@xagasoft.com>2012-07-19 21:13:55 +0000
commit5e2db821d6486f9f8df541dd1e2ca6e5ddd15a51 (patch)
treeb175b0a3ee85d0301415eb6578775dbb881979ac /Makefile
parenta10cdf5cbcfc11e948f2e64e3adb4325f96f6bb4 (diff)
downloadlibbu++-5e2db821d6486f9f8df541dd1e2ca6e5ddd15a51.tar.gz
libbu++-5e2db821d6486f9f8df541dd1e2ca6e5ddd15a51.tar.bz2
libbu++-5e2db821d6486f9f8df541dd1e2ca6e5ddd15a51.tar.xz
libbu++-5e2db821d6486f9f8df541dd1e2ca6e5ddd15a51.zip
Fix to the makefile for windows.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 60a31b8..5ba836e 100644
--- a/Makefile
+++ b/Makefile
@@ -76,7 +76,7 @@ myriad:
76 g++ -ggdb -W -Wall -I. -L. $< -o $@ -lbu++ -lpthread 76 g++ -ggdb -W -Wall -I. -L. $< -o $@ -lbu++ -lpthread
77 77
78${OBJECTS}: %.o: %.cpp 78${OBJECTS}: %.o: %.cpp
79 g++ -ggdb -W -Wall -I. $< -c -o $@ 79 g++ -ggdb -W -Wall -I. ${CXXFLAGS} $< -c -o $@
80 80
81$(patsubst %,src/%.cpp,${UNITS}): %.cpp: %.unit mkunit 81$(patsubst %,src/%.cpp,${UNITS}): %.cpp: %.unit mkunit
82 ./mkunit $< $@ 82 ./mkunit $< $@