summaryrefslogtreecommitdiff
path: root/rgo/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'rgo/Makefile')
-rw-r--r--rgo/Makefile38
1 files changed, 0 insertions, 38 deletions
diff --git a/rgo/Makefile b/rgo/Makefile
deleted file mode 100644
index 4118fe4..0000000
--- a/rgo/Makefile
+++ /dev/null
@@ -1,38 +0,0 @@
-SRCS = \
- src/fndbyte.S \
- src/fndchr.S \
- src/memcpy.S \
- src/memdup.c \
- src/memeq.S \
- src/memfill.S \
- src/strdup.c \
- src/streq.S \
- src/strfill.c \
- src/strcpy.S \
- src/strlen.S
-
-OBJS := $(SRCS:.S=.o)
-OBJS := $(OBJS:.c=.o)
-LIB := librgo.a
-
-ASFLAGS = \
- -Iinclude \
- -g \
- -march=native
-
-CFLAGS = \
- -Iinclude \
- -O3 \
- -g \
- -march=native
-
-.PHONY: clean purge
-
-$(LIB): $(OBJS)
- ar r $@ $^
-
-clean:
- rm -fr $(OBJS)
-
-purge:
- rm -fr $(LIB) $(OBJS)