Jörgs Lösung für Euler 87 in C
This commit is contained in:
parent
65fbff74b7
commit
94147b887b
2 changed files with 119 additions and 0 deletions
11
2017-03-28/Makefile
Normal file
11
2017-03-28/Makefile
Normal file
|
@ -0,0 +1,11 @@
|
|||
#!/usr/bin/make -f
|
||||
|
||||
CFLAGS=-g -O2 -fPIC -fPIE -Wall -Wextra -Wformat=2 -Wunused -Wlogical-op -Wundef \
|
||||
-Wswitch-enum -Wpointer-arith -Wcast-qual -Wcast-align -Wwrite-strings \
|
||||
-Wconversion -D_FORTIFY_SOURCE=2 -fstack-protector -Wshadow -Wnested-externs
|
||||
|
||||
LDFLAGS=-lm
|
||||
|
||||
.PHONY: all
|
||||
|
||||
all: jo-so_euler87
|
Reference in a new issue