summaryrefslogtreecommitdiff
path: root/comprec/comprec-0.02/makefile.patch
diff options
context:
space:
mode:
Diffstat (limited to 'comprec/comprec-0.02/makefile.patch')
-rw-r--r--comprec/comprec-0.02/makefile.patch51
1 files changed, 0 insertions, 51 deletions
diff --git a/comprec/comprec-0.02/makefile.patch b/comprec/comprec-0.02/makefile.patch
deleted file mode 100644
index 9693351aa9..0000000000
--- a/comprec/comprec-0.02/makefile.patch
+++ /dev/null
@@ -1,51 +0,0 @@
-
-#
-# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher
-#
-
---- comprec-0.02/Makefile~makefile 2003-02-16 16:53:11.000000000 -0500
-+++ comprec-0.02/Makefile 2004-03-04 03:38:50.000000000 -0500
-@@ -1,12 +1,15 @@
--ZROOT=/home/zaurus/develop
--CC_NATIVE=gcc
--CC=$(ZROOT)/arm/bin/arm-linux-gcc
--AS=$(ZROOT)/arm/bin/arm-v4l-linux-as
--STRIP=$(ZROOT)/arm/bin/arm-v4l-linux-strip
-+BUILD_CC=gcc
-+CC=$(BUILD_CC)
-+AS=as
-+LD=ld
-+STRIP=strip
- IPKG_BUILD=./ipkg-build
-
--CFLAGS+=-Wall -O2 -fno-exceptions -g
--LDFLAGS+=-lm -g
-+CFLAGS=-Wall -O2 -fno-exceptions
-+LDFLAGS=
-+LIBS=-lm
-+BUILD_CFLAGS=$(CFLAGS)
-+BUILD_LDFLAGS=$(LDFLAGS)
-
- VERSION=0.02
-
-@@ -22,17 +25,17 @@
- comprec0.png comprec.desktop
-
- shine: table1.h table2.h $(OBJECTS)
-- $(CC) -o $@ $(OBJECTS) $(LDFLAGS)
-+ $(CC) -o $@ $(LDFLAGS) $(LIBS) $(OBJECTS)
- $(STRIP) $@
-
- Maindlg.py: Maindlg.ui
- pyuic Maindlg.ui > Maindlg.py
-
- table1.h table2.h: tables
-- tables
-+ ./tables
-
- tables: tables.c
-- $(CC_NATIVE) -o $@ $(CFLAGS) $< -lm
-+ $(BUILD_CC) -o $@ $(BUILD_CFLAGS) $(BUILD_LDFLAGS) $(LIBS) $<
-
- clean:
- rm -f $(OBJECTS) shine .depend