-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
32 lines (20 loc) · 790 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
goal: hello entry panned radio TestIRCServer timer IRCClient git
git:
git add -A >> .local.git.out
git commit -a -m "Make IRCclient" >> .local.git.out
hello: hello.c
gcc hello.c -o hello `pkg-config --cflags --libs gtk+-2.0`
panned: panned.c
gcc panned.c -o panned `pkg-config --cflags --libs gtk+-2.0`
entry: entry.c
gcc entry.c -o entry `pkg-config --cflags --libs gtk+-2.0`
radio: radio.c
gcc radio.c -o radio `pkg-config --cflags --libs gtk+-2.0`
timer: timer.c
gcc timer.c -o timer `pkg-config --cflags --libs gtk+-2.0`
TestIRCServer: TestIRCServer.c
g++ -g -o TestIRCServer TestIRCServer.c
IRCClient: IRCClient.cc
g++ `pkg-config --cflags gtk+-2.0` -o IRCClient IRCClient.cc `pkg-config --libs gtk+-2.0`
clean:
rm -f hello panned entry radio timer TestIRCServer