summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile21
1 files changed, 0 insertions, 21 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 9104cae..0000000
--- a/Makefile
+++ /dev/null
@@ -1,21 +0,0 @@
-CC = cc
-TARGET = cvn
-
-SRC = main.c
-OBJ = $(SRC:.c=.o)
-
-CFLAGS = -std=c99 -O3 -Wall -I/usr/local/include
-LDFLAGS = -L/usr/local/lib
-
-all: $(TARGET)
-
-%.o: %.c
- $(CC) $(CFLAGS) -c $< -o $@
-
-$(TARGET): $(OBJ)
- $(CC) $(OBJ) -o $(TARGET) $(LDFLAGS)
-
-.PHONY: clean
-
-clean:
- rm -f $(OBJ) $(TARGET)