+.config/yt-dlp.conf
[nethome.git] / src / Makefile
1 CFLAGS=
2 CFLAGS+=-Wall -Wstrict-prototypes -ggdb3
3 #CFLAGS+=-pedantic -ansi -traditional -Wall -Wstrict-prototype
4 #CFLAGS+=-O9 -fexpensive-optimizations -finline-functions
5 #CFLAGS+=-pg
6
7 all: streamfer-server streamfer-client
8 # yasm2gas unmime flock pipebuf
9
10 pipebuf: pipebuf.c
11         sh $<
12
13 yasm2gas: yasm2gas.c
14         gcc -o $@ -Wall -g $<
15
16 streamfer-server: streamfer-server.C streamfer.h streamfer.C safeio.C safeio.h socket.C socket.h stringf.h
17         clang++ -o $@ -Wall -g streamfer-server.C streamfer.C safeio.C socket.C
18
19 streamfer-client: streamfer-client.C streamfer.h streamfer.C safeio.C safeio.h socket.C socket.h stringf.h
20         clang++ -o $@ -Wall -g streamfer-client.C streamfer.C safeio.C socket.C