blob: 3d24b982495931e41a0782b7626ae94cf33c7a19 (
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
|
diff -urN Clean 2.0.1 Sources/Library/Makefile.linux Clean_2.0.1_Sources-new/Library/Makefile.linux
--- Clean 2.0.1 Sources/Library/Makefile.linux 2002-07-04 14:39:53.000000000 +0200
+++ Clean_2.0.1_Sources-new/Library/Makefile.linux 2002-09-16 15:15:09.000000000 +0200
@@ -2,6 +2,7 @@
SDIR = ./
ODIR = ./
+CFLAGS = -O
DEFINES = -DUSE_CLIB -DLINUX -DI486 -DGNU_C -DELF
DEFINESA = -D USE_CLIB -D LINUX -D I486 -D GNU_C -D ELF
@@ -11,14 +12,14 @@
ld -r -o $(ODIR)_startup.o $(ODIR)istartup.o $(ODIR)scon.o $(ODIR)ifileIO3.o $(ODIR)ufileIO2.o
$(ODIR)scon.o: $(SDIR)scon.c
-# gcc -c -O $(DEFINES) -o $(ODIR)scon.o $(SDIR)scon.c
- $(CC) -O $(DEFINES) $(SDIR)scon.c -S -o $(ODIR)scon.s
+# gcc -c ${CFLAGS} $(DEFINES) -o $(ODIR)scon.o $(SDIR)scon.c
+ $(CC) ${CFLAGS} $(DEFINES) $(SDIR)scon.c -S -o $(ODIR)scon.s
mv $(ODIR)scon.s $(ODIR)scon.s.copy
grep -v -w ___main $(ODIR)scon.s.copy > $(ODIR)scon.s
as $(DEFINES_A) $(ODIR)scon.s -o $(ODIR)scon.o
$(ODIR)ufileIO2.o: $(SDIR)ufileIO2.c
- gcc -c -O $(DEFINES) -o $(ODIR)ufileIO2.o $(SDIR)ufileIO2.c
+ gcc -c ${CFLAGS} $(DEFINES) -o $(ODIR)ufileIO2.o $(SDIR)ufileIO2.c
$(ODIR)istartup.o: $(SDIR)istartup.s
cp $(ODIR)istartup.s $(ODIR)istartup.cpp
|