File: makefile

package info (click to toggle)
tth 4.16%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,676 kB
  • sloc: xml: 291; makefile: 173; ansic: 131; sh: 64
file content (16 lines) | stat: -rw-r--r-- 343 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
all : tthsplit choice.exe tthsplit.exe

choice : choice.c
	gcc -o choice choice.c

choice.exe : choice.c
	mingw -o choice.exe choice.c

tthsplit : tthsplit.c
	gcc $(LDFLAGS) $(CFLAGS) $(CPPFLAGS) -Wall -o tthsplit tthsplit.c

tthsplit.exe : tthsplit.c
	mingw -o tthsplit.exe tthsplit.c

clean : 
	rm -f tthsplit tthsplit.exe choice.exe choice