Skip to content

Commit

Permalink
Fixed windows target in makefiles.
Browse files Browse the repository at this point in the history
svn path=/trunk/csvorbis/; revision=4920
  • Loading branch information
Mark Crichton committed May 24, 2002
1 parent d816026 commit 69c377e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
2002-23-05 Mark Crichton <[email protected]>

* README, COPYING: added
* all makefiles had their slashes fixed for Windows.
csc seems so unique...

2002-17-05 Mark Crichton <[email protected]>

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
DIRS=csogg csvorbis OggDecoder
CSC=csc.exe
CSC=csc
MCS=mcs

all: unix
Expand Down
2 changes: 1 addition & 1 deletion OggDecoder/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
all: unix

windows:
$(CSC) /out:..\bin\OggDecoder.exe /r:../bin/csogg.dll /r:../bin/csvorbis.dll *.cs
$(CSC) /out:../bin/OggDecoder.exe /r:../bin/csogg.dll /r:../bin/csvorbis.dll *.cs

unix:
$(MCS) -L ../bin/ -r csvorbis -r csogg -o ../bin/OggDecoder.exe *.cs
Expand Down
2 changes: 1 addition & 1 deletion csogg/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
all: unix

windows:
$(CSC) /out:..\bin\csogg.dll /target:library *.cs
$(CSC) /out:../bin/csogg.dll /target:library *.cs

unix:
$(MCS) --target library -o ../bin/csogg.dll *.cs
Expand Down
2 changes: 1 addition & 1 deletion csvorbis/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
all: unix

windows:
$(CSC) /out:..\bin\csvorbis.dll /r:..\bin\csogg.dll /target:library *.cs
$(CSC) /out:../bin/csvorbis.dll /r:../bin/csogg.dll /target:library *.cs

unix:
$(MCS) --target library -L ../bin -r csogg -o ../bin/csvorbis.dll *.cs
Expand Down

0 comments on commit 69c377e

Please sign in to comment.