summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..780931c
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,21 @@
+CC = cc
+TARGET = svs
+
+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)