mirror of
https://git.suyu.dev/suyu/AppImageKit-checkrt.git
synced 2026-01-08 07:28:03 +01:00
Initial commit
This commit is contained in:
commit
67024f9062
4 changed files with 169 additions and 0 deletions
18
Makefile
Normal file
18
Makefile
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
CFLAGS ?= -O2 -Wall -Wextra
|
||||
LDFLAGS += -s
|
||||
BIN = AppRun_patched
|
||||
|
||||
|
||||
all: $(BIN)
|
||||
|
||||
clean:
|
||||
-rm -f $(BIN) *.o AppRun.c AppRun_patched.c
|
||||
|
||||
$(BIN): AppRun_patched.o checkrt.o
|
||||
|
||||
AppRun_patched.c: AppRun.c
|
||||
patch -p1 --output $@ < AppRun.c.patch
|
||||
|
||||
AppRun.c:
|
||||
wget -c "https://raw.githubusercontent.com/probonopd/AppImageKit/appimagetool/master/AppRun.c"
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue