1
0
Fork 0
mirror of https://github.com/tailix/kernel.git synced 2025-06-02 18:21:59 -04:00
kernel/libk/Makefile
2017-11-04 06:40:46 +00:00

19 lines
314 B
Makefile

AR = $(CCPREFIX)ar
CC = $(CCPREFIX)gcc
CFLAGS = -std=gnu99 -ffreestanding -nostdinc -fno-builtin -fno-stack-protector -Wall -Wextra
OUTPUT = libk.a
OBJS = memset.o strlen.o itoa.o
all: $(OUTPUT)
clean:
rm -f $(OUTPUT) $(OBJS)
$(OUTPUT): $(OBJS)
$(AR) -rcs $@ $(OBJS)
%.o: %.c
$(CC) -c $< -o $@ $(CFLAGS)