diff options
author | Vincent Douillet <vincent@vdouillet.fr> | 2024-05-13 22:04:01 +0200 |
---|---|---|
committer | Vincent Douillet <vincent@vdouillet.fr> | 2024-05-13 22:31:42 +0200 |
commit | 4be89075c5bb5793f8c79da8f8df1accc1f0168f (patch) | |
tree | 6407385f4d4827651a10a495f829a6bfa0109f3a /Makefile | |
parent | 10eb77f9323110c55f88195c5b8207eb524baa73 (diff) |
fix encodings in headers and file paths
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |