mirror of
https://github.com/dlang/phobos.git
synced 2025-05-01 07:30:33 +03:00
fixe makefile for 64 bits
This commit is contained in:
parent
df16d2a797
commit
f8b01a88a5
2 changed files with 79 additions and 79 deletions
|
@ -64,10 +64,10 @@ zlib.a: $(OBJS)
|
||||||
ar -r $@ $(OBJS)
|
ar -r $@ $(OBJS)
|
||||||
|
|
||||||
example: example.o zlib.a
|
example: example.o zlib.a
|
||||||
$(CC) -o $@ example.o zlib.a -g
|
$(CC) $(CFLAGS) -o $@ example.o zlib.a -g
|
||||||
|
|
||||||
minigzip: minigzip.o zlib.a
|
minigzip: minigzip.o zlib.a
|
||||||
$(CC) -o $@ minigzip.o zlib.a -g
|
$(CC) $(CFLAGS) -o $@ minigzip.o zlib.a -g
|
||||||
|
|
||||||
test: example minigzip
|
test: example minigzip
|
||||||
./example
|
./example
|
||||||
|
|
|
@ -49,7 +49,7 @@
|
||||||
* (See accompanying file LICENSE_1_0.txt or copy at
|
* (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
* http://www.boost.org/LICENSE_1_0.txt)
|
* http://www.boost.org/LICENSE_1_0.txt)
|
||||||
*/
|
*/
|
||||||
module(system) std.math;
|
module std.math;
|
||||||
|
|
||||||
//debug=math; // uncomment to turn on debugging printf's
|
//debug=math; // uncomment to turn on debugging printf's
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue