mirror of
https://github.com/tailix/kernel.git
synced 2024-10-30 12:03:52 -04:00
12 lines
197 B
Makefile
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)
|