Skip to content

Commit

Permalink
Make sealer statically compiled.
Browse files Browse the repository at this point in the history
  • Loading branch information
olonho committed Jun 5, 2021
1 parent ed6f5c4 commit f0ddaf6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
CFLAGS=-Wall -Werror
CFLAGS=-Wall -Werror -static
SEALER=./sealer

$(SEALER): sealer.c
$(CC) $(CFLAGS) $< -o $(SEALER)

run: $(SEALER)
$(SEALER) -f ./libskiko-linux-x64.so

clean:
rm -f *.o $(SEALER)
Binary file modified sealer
Binary file not shown.

0 comments on commit f0ddaf6

Please sign in to comment.