diff options
author | Hector Chu <hectorchu@gmail.com> | 2009-11-30 11:53:11 -0800 |
---|---|---|
committer | Hector Chu <hectorchu@gmail.com> | 2009-11-30 11:53:11 -0800 |
commit | 8eabe8208c32050802c06abdc2baf49febf6fb7a (patch) | |
tree | 7ac62e529fdf4675e7449e7171ed7cc0a573e517 /src/libmach | |
parent | 2c880cf84880cfac9c667f48087c7c30d19b76ba (diff) | |
download | golang-8eabe8208c32050802c06abdc2baf49febf6fb7a.tar.gz |
Ports of lib9, libbio and libmach to Windows.
R=rsc
http://codereview.appspot.com/157159
Committer: Russ Cox <rsc@golang.org>
Diffstat (limited to 'src/libmach')
-rw-r--r-- | src/libmach/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/libmach/Makefile b/src/libmach/Makefile index f1be126d2..69d52c288 100644 --- a/src/libmach/Makefile +++ b/src/libmach/Makefile @@ -47,8 +47,13 @@ OFILES=\ 5obj.$O\ 6obj.$O\ 8obj.$O\ + +ifneq ($(GOOS),mingw) +OFILES+=\ $(shell uname | tr A-Z a-z).$O\ +endif + HFILES=../../include/mach.h elf.h macho.h obj.h install: $(LIB) |