Initial commit

This commit is contained in:
darealshinji 2017-04-26 15:27:46 +02:00
commit 67024f9062
4 changed files with 169 additions and 0 deletions

18
Makefile Normal file
View 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"