From 64e25bef9c8e797f2c1af2f73b8faa6c46456fef Mon Sep 17 00:00:00 2001 From: jaseg Date: Thu, 28 Apr 2016 21:59:17 +0200 Subject: Add dynamic compilation option --- Makefile | 26 +++++++++++++++++--------- censor | Bin 26088 -> 0 bytes lolcat | Bin 40840 -> 0 bytes 3 files changed, 17 insertions(+), 9 deletions(-) delete mode 100755 censor delete mode 100755 lolcat diff --git a/Makefile b/Makefile index 0acbb89..f6aba9a 100644 --- a/Makefile +++ b/Makefile @@ -1,27 +1,35 @@ all: lolcat censor +.PHONY: install clean musl static + musl/lib/libc.a musl/lib/crt1.o: cd musl; ./configure make -C musl musl: musl/lib/libc.a musl/lib/crt1.o -lolcat: lolcat.c musl - gcc -c -std=c11 -Wall -Imusl/include -o lolcat.o lolcat.c - gcc -s -nostartfiles -nodefaultlibs -nostdinc -static -ffunction-sections -fdata-sections -Wl,--gc-sections -o lolcat lolcat.o musl/lib/crt1.o musl/lib/libc.a +static: lolcat-static censor-static + +lolcat-static: lolcat.c musl + gcc -c -std=c11 -Wall -Imusl/include -o lolcat.o $< + gcc -s -nostartfiles -nodefaultlibs -nostdinc -static -ffunction-sections -fdata-sections -Wl,--gc-sections -o $@ lolcat.o musl/lib/crt1.o musl/lib/libc.a + +censor-static: censor.c musl + gcc -c -std=c11 -Wall -Imusl/include -o censor.o $< + gcc -s -nostartfiles -nodefaultlibs -nostdinc -static -ffunction-sections -fdata-sections -Wl,--gc-sections -o $@ censor.o musl/lib/crt1.o musl/lib/libc.a -censor: censor.c musl - gcc -c -std=c11 -Wall -Imusl/include -o censor.o censor.c - gcc -s -nostartfiles -nodefaultlibs -nostdinc -static -ffunction-sections -fdata-sections -Wl,--gc-sections -o censor censor.o musl/lib/crt1.o musl/lib/libc.a +lolcat: lolcat.c + gcc -std=c11 -Wall -o $@ $< + +censor: censor.c + gcc -std=c11 -Wall -o $@ $< install: lolcat censor install lolcat /usr/local/bin install censor /usr/local/bin clean: - rm -f lolcat lolcat.o censor censor.o + rm -f lolcat lolcat-static.o lolcat-static censor censor-static.o censor-static make -C musl clean -.PHONY: install clean musl - diff --git a/censor b/censor deleted file mode 100755 index 94b83f7..0000000 Binary files a/censor and /dev/null differ diff --git a/lolcat b/lolcat deleted file mode 100755 index 83fdf9a..0000000 Binary files a/lolcat and /dev/null differ -- cgit