Compare commits
2 Commits
203cca8dff
...
7fe298d6f0
Author | SHA1 | Date | |
---|---|---|---|
7fe298d6f0 | |||
d278d4eb3c |
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
build
|
||||||
|
obj
|
34
Makefile
Normal file
34
Makefile
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
SRCDIR = src
|
||||||
|
OBJDIR = obj
|
||||||
|
BUILDDIR = build
|
||||||
|
|
||||||
|
SRC := $(wildcard $(SRCDIR)/**/*.c)
|
||||||
|
OBJ := $(patsubst $(SRCDIR)/%.c,$(OBJDIR)/%.o,$(SRC))
|
||||||
|
|
||||||
|
CC = gcc
|
||||||
|
CFLAGS = -iquoteheaders -c
|
||||||
|
|
||||||
|
AR = ar
|
||||||
|
ARFLAGS =
|
||||||
|
|
||||||
|
NAME = libbozo.a
|
||||||
|
|
||||||
|
$(OBJDIR)/%.o: $(SRCDIR)/%.c
|
||||||
|
mkdir -p $(dir $@)
|
||||||
|
$(CC) $(CFLAGS) $< -o $@
|
||||||
|
|
||||||
|
all : $(NAME)
|
||||||
|
|
||||||
|
clean :
|
||||||
|
rm -rf $(OBJDIR)
|
||||||
|
|
||||||
|
fclean : clean
|
||||||
|
rm -rf $(BUILDDIR)
|
||||||
|
|
||||||
|
$(NAME) : $(OBJ)
|
||||||
|
mkdir -p $(BUILDDIR)
|
||||||
|
$(AR) -rc $(BUILDDIR)/$(NAME) $(OBJ)
|
||||||
|
|
||||||
|
re: fclean all
|
||||||
|
|
||||||
|
.PHONY: clean fclean test all re
|
@ -1,7 +1,7 @@
|
|||||||
#include "../../headers/kprint.h"
|
#include "kprint.h"
|
||||||
#include "../../headers/string.h"
|
#include "string.h"
|
||||||
#include "../../headers/terminal.h"
|
#include "terminal.h"
|
||||||
#include "../../headers/ctype.h"
|
#include "ctype.h"
|
||||||
|
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user