You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cacert-webdb/scripts/Makefile

9 lines
205 B
Makefile

all: runserver.c runclient.c
gcc -O2 -o runserver runserver.c
gcc -O2 -o runclient runclient.c
chown root:www-data runserver runclient
chmod 4710 runserver runclient
clean:
rm -f runserver runclient