mirror of
https://github.com/QingdaoU/Judger.git
synced 2024-12-29 16:31:42 +00:00
9 lines
135 B
Makefile
9 lines
135 B
Makefile
CC ?= gcc
|
|
PREFIX ?= /usr/local
|
|
|
|
sandbox.so: sandbox.c
|
|
$(CC) $^ $(CFLAGS) -fPIC -ldl -shared -lseccomp -o $@
|
|
|
|
clean:
|
|
rm -f sandbox.so
|