diff options
Diffstat (limited to 'src/sys/lib/Makefile')
-rw-r--r-- | src/sys/lib/Makefile | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/src/sys/lib/Makefile b/src/sys/lib/Makefile deleted file mode 100644 index 46e4aec..0000000 --- a/src/sys/lib/Makefile +++ /dev/null @@ -1,25 +0,0 @@ -include ../conf/sys.mk - -.SILENT: -override PROMPT := printf "%s\t\t%s\n" - -TARGET_LIB = ../target/libstring.a -CFLAGS = -I../include/ -I../include/lib/ -I../target/header/ $(MI_CFLAGS) -O0 -CFILES = $(shell find . -name "*.c") - -DEPS = $(CFILES:.c=.d) -OBJECTS = $(CFILES:%.c=%.o) - -.PHONY: all -all: $(OBJECTS) - $(PROMPT) " MI.AR " $< - ar rcs $(TARGET_LIB) $(OBJECTS) - --include $(DEPS) -%.o: %.c - $(PROMPT) " MI.CC " $< - $(CC) -c $(CFLAGS) $< -o $@ - -.PHONY: clean -clean: - rm -f $(DEPS) $(OBJECTS) |