1
0
Fork 0
mirror of https://github.com/tailix/kernel.git synced 2024-10-30 12:03:52 -04:00
kernel/libk/Makefile

22 lines
336 B
Makefile
Raw Normal View History

2017-11-04 02:04:04 -04:00
CCPREFIX = i686-elf-
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)