summaryrefslogtreecommitdiff
path: root/other/reverb/Makefile
diff options
context:
space:
mode:
authorSkyperTHC2026-03-03 06:28:55 +0000
committerSkyperTHC2026-03-03 06:28:55 +0000
commit5d3573ef7a109ee70416fe94db098fe6a769a798 (patch)
treedc2d5b294c9db8ab2db7433511f94e1c4bb8b698 /other/reverb/Makefile
parentc6c59dc73cc4586357f93ab38ecf459e98675cc5 (diff)
packetstorm sync
Diffstat (limited to 'other/reverb/Makefile')
-rw-r--r--other/reverb/Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/other/reverb/Makefile b/other/reverb/Makefile
new file mode 100644
index 0000000..520bb8c
--- /dev/null
+++ b/other/reverb/Makefile
@@ -0,0 +1,18 @@
1
2DFLAGS=-Wall
3CC=cc
4CFLAGS=$(DFLAGS) -O2
5OBJS=network.o
6
7all: reverb
8
9clean:
10 rm -f *.o reverb
11
12reverb: $(OBJS)
13 $(CC) $(CFLAGS) -o reverb reverb.c $(OBJS)
14 strip reverb
15
16network.o: network.c
17 $(CC) $(CFLAGS) -c network.c
18