1
0
Fork 0
mirror of https://github.com/tailix/kernel.git synced 2024-10-30 12:03:52 -04:00
kernel/arch/none/Makefile
2017-11-08 12:09:14 +00:00

12 lines
197 B
Makefile

OBJS = main.o
all: $(OUTPUT)
clean:
rm -f $(OUTPUT) $(OBJS)
$(OUTPUT): $(OBJS)
$(CC) -o $(OUTPUT) $(OBJS) $(LIBSRC) $(LIBK)
%.o: %.c
$(CC) -c $< -o $@ -std=gnu99 -Wall -Wextra -I $(INCLUDE)