Fix make rule order for system-musl builds
This commit is contained in:
parent
55fe98e4d9
commit
8e95919c9f
2 changed files with 4 additions and 3 deletions
6
Makefile
6
Makefile
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue