summaryrefslogtreecommitdiff
path: root/AK/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'AK/Makefile')
-rw-r--r--AK/Makefile18
1 files changed, 0 insertions, 18 deletions
diff --git a/AK/Makefile b/AK/Makefile
deleted file mode 100644
index 1d6353827c..0000000000
--- a/AK/Makefile
+++ /dev/null
@@ -1,18 +0,0 @@
-PROGRAM = akit-test
-OBJS = StringImpl.o String.o MappedFile.o TemporaryFile.o SimpleMalloc.o kmalloc.o FileSystemPath.o StringBuilder.o test.o
-
-CXXFLAGS = -std=c++17 -O0 -W -Wall -ggdb3
-
-all: $(PROGRAM)
-
-test.o: Vector.h AKString.h StringImpl.h MappedFile.h HashTable.h SinglyLinkedList.h Traits.h HashMap.h TemporaryFile.h Buffer.h FileSystemPath.h StringBuilder.h
-
-.cpp.o:
- $(CXX) $(CXXFLAGS) -o $@ -c $<
-
-clean:
- rm -f $(OBJS) $(PROGRAM)
-
-$(PROGRAM): $(OBJS)
- $(CXX) $(LDFLAGS) -o $@ $(OBJS)
-