You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
1.7 KiB
27 lines
1.7 KiB
Index: src/makefile |
|
--- src/makefile.orig 2009-07-04 13:27:03 +0200 |
|
+++ src/makefile 2009-07-07 22:51:38 +0200 |
|
@@ -4,12 +4,12 @@ |
|
# make |
|
# If you are under windows you should use MinGW with mk_mingw.mak, mk_nmake.mak or mk_msys.mak instead. |
|
|
|
-# CFLAGS = |
|
+CFLAGS = |
|
# CFLAGS = -Wall -Wstrict-prototypes -Winline -Wconversion -Wshadow -Wpointer-arith |
|
# CFLAGS = -O2 -fomit-frame-pointer -Wall -Wstrict-prototypes -Winline -Wconversion -Wshadow -Wpointer-arith |
|
# CFLAGS = -O2 -fomit-frame-pointer -Wall -Wextra -Wswitch-default -Wswitch-enum -Wcast-qual -Waggregate-return -Wwrite-strings -Wstrict-prototypes -Winline -Wconversion -Wshadow -Wpointer-arith -Wmissing-noreturn -Wno-multichar |
|
# CFLAGS = -O2 -fomit-frame-pointer -Wall -Wextra -Wswitch-default -Wcast-qual -Waggregate-return -Wwrite-strings -Winline -Wconversion -Wshadow -Wpointer-arith -Wmissing-noreturn -Wno-multichar |
|
-CFLAGS = -O2 -g -Wall -Wstrict-prototypes -Winline -Wconversion -Wshadow -Wpointer-arith |
|
+# CFLAGS = -O2 -g -Wall -Wstrict-prototypes -Winline -Wconversion -Wshadow -Wpointer-arith |
|
# CFLAGS = -O2 -g -Wall |
|
# CFLAGS = -O2 -g -pg -Wall -Wstrict-prototypes -Winline -Wconversion -Wshadow -Wpointer-arith |
|
# CFLAGS = -O2 -fomit-frame-pointer -funroll-loops -Wall |
|
@@ -187,7 +187,7 @@ |
|
echo "#define SEED7_LIB \"`pwd`/$(SEED7_LIB)\"" >> version.h |
|
echo "#define COMP_DATA_LIB \"`pwd`/$(COMP_DATA_LIB)\"" >> version.h |
|
echo "#define COMPILER_LIB \"`pwd`/$(COMPILER_LIB)\"" >> version.h |
|
- cd ../lib; echo "#define SEED7_LIBRARY" \"`pwd`\" >> ../src/version.h; cd ../src |
|
+ cd ../lib; echo "#define SEED7_LIBRARY" \"$(SEED7_LIBRARY)\" >> ../src/version.h; cd ../src |
|
|
|
hi.o: hi.c |
|
$(CC) $(CFLAGS) -c hi.c
|
|
|