aboutsummaryrefslogtreecommitdiffstats
path: root/openwrt/package/psybnc/patches/Makefile.patch
blob: 2db956072c323797340afda7566526205f65787a (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
--- psybnc/Makefile	2005-06-04 20:22:45.000000000 +0200
+++ psybnc_patched/Makefile	2005-11-04 11:50:28.879157626 +0100
@@ -1,16 +1,16 @@
-CC	= gcc
+HOSTCC	= gcc
 CCFLAGS = 
 
 all:	$(OBJS)
 	@echo Initializing bouncer compilation
 	@echo [*] Running Conversion Tool for older psyBNC Data.
-	@$(CC) tools/convconf.c -o tools/convconf
+	@$(HOSTCC) tools/convconf.c -o tools/convconf
 	@tools/convconf
 	@echo [*] Running Autoconfig.
-	@$(CC) -I. tools/autoconf.c -o tools/autoconf
+	@$(HOSTCC) -I. tools/autoconf.c -o tools/autoconf
 	@tools/autoconf
 	@echo [*] Compiling MakeSalt for Encryption..
-	@$(CC) -I. -o makesalt tools/makesalt.c
+	@$(HOSTCC) -I. -o makesalt tools/makesalt.c
 	@./makesalt
 	@echo [*] Compiling Bouncer..
 	@make -f makefile.out
@@ -20,14 +20,14 @@
 menuconfig:
 	@echo Initializing Menu-Configuration
 	@echo [*] Running Conversion Tool for older psyBNC Data.
-	@$(CC) tools/convconf.c -o tools/convconf
+	@$(HOSTCC) tools/convconf.c -o tools/convconf
 	@tools/convconf
 	@echo [*] Running Autoconfig.
-	@$(CC) -I. tools/autoconf.c -o tools/autoconf
+	@$(HOSTCC) -I. tools/autoconf.c -o tools/autoconf
 	@tools/autoconf
 	@echo [*] Creating Menu, please wait.
 	@echo This needs the 'ncurses' library. If it is not available, menuconf wont work. If you are using 'curses', use make menuconfig-curses instead.
-	@$(CC) menuconf/menuconf.c menuconf/inputbox.c menuconf/util.c menuconf/checklist.c menuconf/menubox.c menuconf/textbox.c src/snprintf.c -I. -lncurses -lm -o menuconf/menuconf 2>/dev/null
+	@$(HOSTCC) menuconf/menuconf.c menuconf/inputbox.c menuconf/util.c menuconf/checklist.c menuconf/menubox.c menuconf/textbox.c src/snprintf.c -I. -lncurses -lm -o menuconf/menuconf 2>/dev/null
 	@menuconf/menuconf
 	@clear
 	@echo Now compile psyBNC using make, if not yet compiled, or if Options were changed.
@@ -36,14 +36,14 @@
 menuconfig-curses:
 	@echo Initializing Menu-Configuration using Curses
 	@echo [*] Running Conversion Tool for older psyBNC Data.
-	@$(CC) tools/convconf.c -o tools/convconf
+	@$(HOSTCC) tools/convconf.c -o tools/convconf
 	@tools/convconf
 	@echo [*] Running Autoconfig.
-	@$(CC) -I. tools/autoconf.c -o tools/autoconf
+	@$(HOSTCC) -I. tools/autoconf.c -o tools/autoconf
 	@tools/autoconf
 	@echo [*] Creating Menu, please wait.
 	@echo This needs the 'curses' library. If it is not available, menuconf wont work.
-	@$(CC) menuconf/menuconf.c menuconf/inputbox.c menuconf/util.c menuconf/checklist.c menuconf/menubox.c menuconf/textbox.c src/snprintf.c -DNONCURSES -I. -lcurses -lm -o menuconf/menuconf 2>/dev/null
+	@$(HOSTCC) menuconf/menuconf.c menuconf/inputbox.c menuconf/util.c menuconf/checklist.c menuconf/menubox.c menuconf/textbox.c src/snprintf.c -DNONCURSES -I. -lcurses -lm -o menuconf/menuconf 2>/dev/null
 	@menuconf/menuconf
 	@clear
 	@echo Now compile psyBNC using make, if not yet compiled, or if Options were changed.