]> git.gir.st - solVItaire.git/blob - Makefile
first working version of canfield
[solVItaire.git] / Makefile
1 .PHONY: all clean
2
3 CFLAGS := -Wall -Wextra -pedantic -std=c99 -g3 -Wno-unused-parameter
4
5 all: sol
6
7 #canfield:
8 sol: sol.c sol.h schemes.h
9 $(CC) $(CFLAGS) -DKLONDIKE $< -o $@
10
11 spider: sol.c sol.h schemes.h
12 $(CC) $(CFLAGS) -DSPIDER $< -o $@
13
14 clean:
15 rm -f sol spider
16
17 getfuns:
18 grep -o '^\w.* \w.*(.*)[^/]*{' sol.c|sed 's/ *{$/;/'
Imprint / Impressum