aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-07-30 21:52:54 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2022-07-31 03:14:07 +0200
commit6297081081857b38da56665df7a1e91ca7e8ef82 (patch)
tree3453bc47be9b41d4486e142c05ca51a144169a99 /Makefile
parentUpdate monad library. (diff)
downloadtexttv-6297081081857b38da56665df7a1e91ca7e8ef82.tar.gz
texttv-6297081081857b38da56665df7a1e91ca7e8ef82.tar.xz
Update all dependencies to work.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile27
1 files changed, 0 insertions, 27 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 8f867c9..0000000
--- a/Makefile
+++ /dev/null
@@ -1,27 +0,0 @@
-CFLAGS := -fPIC $(shell guile-config compile) \
- $(shell pkg-config --cflags gumbo) \
- -I/usr/local/include/ -Wall
-LFLAGS := $(shell guile-config link) \
- $(shell pkg-config --libs gumbo) \
- -L/usr/local/lib -lcjson
-CC := gcc
-
-.PHONY: all clean
-
-all: libguile-json.so libguile-html.so
-
-%: %.oo
- $(CC) -o $@ $< $(LFLAGS)
-
-%.x: %.c
- guile-snarf -o $@ $< $(CFLAGS)
-
-libguile-%.so: %.oo
- $(CC) -shared -o $@ $< $(LFLAGS)
-
-%.oo: %.c %.x
- $(CC) -c -o $@ $(CFLAGS) $<
-
-clean:
- -rm *.oo
- -rm libguile-*.so