summaryrefslogtreecommitdiff
path: root/src/cmd/test/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/test/Makefile')
-rw-r--r--src/cmd/test/Makefile16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/cmd/test/Makefile b/src/cmd/test/Makefile
deleted file mode 100644
index d0a6795..0000000
--- a/src/cmd/test/Makefile
+++ /dev/null
@@ -1,16 +0,0 @@
-include ../../data/build/user.mk
-
-CFILES = $(shell find . -name "*.c")
-CFILES = $(shell find . -name "*.c")
-CFLAGS = -L$(LIBC_DIR) -lc $(INTERNAL_CFLAGS)
-OBJECTS = $(CFILES:%.c=%.o)
-
-$(SYSROOT)/usr/bin/test: $(OBJECTS)
- $(LD) $(OBJECTS) -o $@ $(CFLAGS)
-
-%.o: %.c
- $(CC) $(INTERNAL_CFLAGS) -c $(CFLAGS) $< -o $@
-
-.PHONY: clean
-clean:
- rm -f *.o *.d