Fix make rule order for system-musl builds

This commit is contained in:
jaseg 2016-11-19 10:28:45 +01:00
parent 55fe98e4d9
commit 8e95919c9f
2 changed files with 4 additions and 3 deletions

View file

@ -5,6 +5,8 @@ CFLAGS ?= -std=c11 -Wall -g
DESTDIR ?= /usr/local/bin
all: lolcat-static censor-static
include Makefile.musl
ifeq ($(shell uname -s),Darwin)
@ -13,9 +15,7 @@ ifeq ($(shell uname -s),Darwin)
CFLAGS += -Imemorymapping/src
endif
all: lolcat-static censor-static
.PHONY: install clean musl static
.PHONY: install clean static
static: lolcat-static censor-static

View file

@ -23,5 +23,6 @@ musl/lib/libc.a musl/lib/crt1.o: musl/config.mak
musl/config.mak:
cd musl; ./configure
.PHONY: musl
musl: musl/lib/libc.a musl/lib/crt1.o