forked from Lainports/freebsd-ports
program may be used to prove that when playing Black Jack it is possible to beat the casino. Probably, Black Jack is the only game offered by casinos, where it is possible to win in the long term (and this fact is mathematically proven). PR: ports/9895 Submitted By: Dima Sivachenko <dima@Chg.RU> [committers note: this can be addicting.]
22 lines
641 B
Text
22 lines
641 B
Text
--- Makefile.orig Mon Oct 26 05:47:44 1998
|
|
+++ Makefile Sun Feb 14 17:39:37 1999
|
|
@@ -13,8 +13,8 @@
|
|
-Wmissing-declarations -Wreturn-type \
|
|
-Wnested-externs -Wwrite-strings -Wcast-qual
|
|
INCDIR = -I. -I/usr/include
|
|
-CFLAGS = $(DEFINES) $(LANG_OPTIONS) $(WARN_OPTIONS) $(INCDIR)
|
|
-COPTS = -O2
|
|
+CFLAGS?= -O2
|
|
+CFLAGS+= $(DEFINES) $(LANG_OPTIONS) $(WARN_OPTIONS) $(INCDIR)
|
|
|
|
######## link options ########
|
|
LD = gcc
|
|
@@ -36,7 +36,7 @@
|
|
|
|
%o: %c
|
|
@echo --- compiling: $< ---
|
|
- $(CC) $(CFLAGS) $(COPTS) -c $< -o $@
|
|
+ $(CC) $(CFLAGS) -c $< -o $@
|
|
|
|
clean:
|
|
rm -f probability.o interactive.o display.o simulate.o core
|