summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 0 insertions, 11 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 22960de..0000000
--- a/Makefile
+++ /dev/null
@@ -1,11 +0,0 @@
-CC = gcc
-CFLAGS = -Wall -Wextra -g -DWASM_MODULE="\"$(WASM_MODULE)\"" -I$(WASMTIME_C_API)/include -L$(WASMTIME_C_API)/lib
-LDFLAGS = -Wl,-rpath,$(WASMTIME_C_API)/lib
-
-all: wasmtime-wasi-http
-
-wasmtime-wasi-http: wasmtime-wasi-http.c
- $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< -lwasmtime
-
-clean:
- rm -f wasmtime-wasi-http