-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
32 lines (22 loc) · 884 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
32
goal: hello entry panned radio TestIRCServer timer git talk-client IRCClient
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
talk-client: talk-client.c
gcc -g -o talk-client talk-client.c `pkg-config --cflags --libs gtk+-2.0`
IRCClient: IRCClient.cc
g++ -g -o IRCClient IRCClient.cc `pkg-config --cflags --libs gtk+-2.0`
clean:
rm -f hello panned entry radio timer TestIRCServer
git:
git add -A >> .local.git.out
git commit -a -m "Make IRCclient" >> .local.git.out