summaryrefslogtreecommitdiff
path: root/Makefile.musl
diff options
context:
space:
mode:
authorjaseg <git@jaseg.net>2018-07-22 18:38:00 +0200
committerjaseg <git@jaseg.net>2018-07-22 18:39:01 +0200
commit32c34ab174f1dd93985831926241ed3f20f4d0c7 (patch)
treeb495f1684d3f69db15de3822d4f1ec0ceb924614 /Makefile.musl
parente298c102bd51ae67fbae09df5dfc00cba16a2231 (diff)
downloadlolcat-32c34ab174f1dd93985831926241ed3f20f4d0c7.tar.gz
lolcat-32c34ab174f1dd93985831926241ed3f20f4d0c7.tar.bz2
lolcat-32c34ab174f1dd93985831926241ed3f20f4d0c7.zip
Remove fmemopen altogether since it just doesn't work.
Closes #9.
Diffstat (limited to 'Makefile.musl')
-rw-r--r--Makefile.musl28
1 files changed, 0 insertions, 28 deletions
diff --git a/Makefile.musl b/Makefile.musl
deleted file mode 100644
index d50de24..0000000
--- a/Makefile.musl
+++ /dev/null
@@ -1,28 +0,0 @@
-
-ifneq (,$(wildcard /usr/local/musl))
-MUSLDIR ?= /usr/local/musl
-else ifneq (,$(wildcard /usr/lib/musl))
-MUSLDIR ?= /usr/lib/musl
-else ifneq (,$(wildcard musl/Makefile))
-MUSLDIR ?= musl
-lolcat-static: musl
-censor-static: musl
-else
-$(info "musl not found. If the build does not go through, consider either installing")
-$(info "musl system-wide using your favorite package manager or fetching and building a")
-$(info "local copy using:")
-$(info "$ git submodule init")
-$(info "$ git submodule update")
-$(info "$ make musl")
-endif
-$(info "Using musl at $(MUSLDIR)")
-
-musl/lib/libc.a musl/lib/crt1.o: musl/config.mak
- make -C musl
-
-musl/config.mak:
- cd musl; ./configure
-
-.PHONY: musl
-musl: musl/lib/libc.a musl/lib/crt1.o
-