blob: 4011fdc0295951fbcace0602c22e3222f8a527a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
--- Makefile.orig 2005-02-07 15:56:48.000000000 +0100
+++ Makefile 2005-02-07 23:23:20.422596896 +0100
@@ -36,7 +36,7 @@
# If unset Intel 386 with optimization for Pentium is selected.
ifndef ARCH
-ARCH = -march=i586 -m$(TUNE)=i686
+ARCH = #-march=i586 -m$(TUNE)=i686
endif
ifdef MINGW
@@ -97,7 +97,7 @@
# Name of libraries you need for linking
ifndef MINGW
-LDADD = -lm
+LDADD = `esd-config --libs`
#LDADD += -lesd
else
LDADD = -lwinmm -lws2_32
@@ -176,9 +176,9 @@
-fno-finite-math-only -fno-unsafe-math-optimizations
endif
-OPTIM_SPEED = -O2 $(FLAGS) $(UNBREAK)
+OPTIM_SPEED = $(UNBREAK)
-OPTIM_SIZE = -Os $(FLAGS) $(UNBREAK)
+OPTIM_SIZE = $(UNBREAK)
# Options to generate Assembly code for inspecting
|