summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorVincent Douillet <vincent@vdouillet.fr>2024-05-13 22:04:01 +0200
committerVincent Douillet <vincent@vdouillet.fr>2024-05-13 22:31:42 +0200
commit4be89075c5bb5793f8c79da8f8df1accc1f0168f (patch)
tree6407385f4d4827651a10a495f829a6bfa0109f3a /Makefile
parent10eb77f9323110c55f88195c5b8207eb524baa73 (diff)
fix encodings in headers and file paths
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index f24297e..7e84eea 100644
--- a/Makefile
+++ b/Makefile
@@ -47,10 +47,10 @@ all: main
.c.o:
$(CC) -o $@ -c $< $(CFLAGS)
-main: mime.o url.o template.o file.o http.o download.o browse.o main.o
+main: str.o mime.o url.o template.o file.o http.o download.o browse.o main.o
$(CC) -o $@ $> $(LDFLAGS)
-test: mime.o url.o template.o file.o http.o download.o browse.o test.o
+test: str.o mime.o url.o template.o file.o http.o download.o browse.o test.o
$(CC) -o $@ $> $(LDFLAGS)
env: env.o