blob: 38cff8e015cf8b8e3f231b1cb6ce043d0b8ae31a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
all: runserver.c runclient.c
gcc -O2 -o runserver runserver.c
gcc -O2 -o runclient runclient.c
gcc -O2 -o rungpg rungpg.c
chown root:chrapach runserver runclient rungpg
chmod 4710 runserver runclient rungpg
clean:
rm -f runserver runclient rungpg test
test: test.c
gcc -O2 -o test test.c
chown root:chrapach test
chmod 4710 test
|