Get rid of nasty GNU Make extensions.
This commit is contained in:
parent
0d967bbff4
commit
3a02a0ee8a
9
Makefile
9
Makefile
@ -1,14 +1,15 @@
|
|||||||
|
.SUFFIXES: .c .o
|
||||||
SRCS = boot.c
|
SRCS = boot.c
|
||||||
LDFLAGS = -flto -T linker.ld -nostdlib -Os
|
LDFLAGS = -flto -T linker.ld -nostdlib -Os
|
||||||
CFLAGS = -flto -ffreestanding -fno-builtin -fno-pie -Wall -std=c2x -m16 -nostdlib -Os -nostartfiles -r
|
CFLAGS = -flto -ffreestanding -fno-builtin -fno-pie -Wall -std=c2x -m16 -nostdlib -Os -nostartfiles -r
|
||||||
|
|
||||||
%.o: %.c
|
.c.o:
|
||||||
$(CC) $^ -o $@ $(CFLAGS)
|
$(CC) $< -o $@ $(CFLAGS)
|
||||||
|
|
||||||
bin: $(SRCS:.c=.o)
|
bin: $(SRCS:.c=.o)
|
||||||
$(CC) $(LDFLAGS) -o bin $^
|
$(CC) $(LDFLAGS) -o bin $(SRCS:.c=.o)
|
||||||
|
|
||||||
all: bin
|
all: bin
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
$(RM) $(SRCS:.c=.o) bin
|
rm -f $(SRCS:.c=.o) bin
|
||||||
|
Loading…
Reference in New Issue
Block a user