diff options
| author | SkyperTHC | 2026-03-03 06:28:55 +0000 |
|---|---|---|
| committer | SkyperTHC | 2026-03-03 06:28:55 +0000 |
| commit | 5d3573ef7a109ee70416fe94db098fe6a769a798 (patch) | |
| tree | dc2d5b294c9db8ab2db7433511f94e1c4bb8b698 /other/reverb/Makefile | |
| parent | c6c59dc73cc4586357f93ab38ecf459e98675cc5 (diff) | |
packetstorm sync
Diffstat (limited to 'other/reverb/Makefile')
| -rw-r--r-- | other/reverb/Makefile | 18 |
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 | |||
| 2 | DFLAGS=-Wall | ||
| 3 | CC=cc | ||
| 4 | CFLAGS=$(DFLAGS) -O2 | ||
| 5 | OBJS=network.o | ||
| 6 | |||
| 7 | all: reverb | ||
| 8 | |||
| 9 | clean: | ||
| 10 | rm -f *.o reverb | ||
| 11 | |||
| 12 | reverb: $(OBJS) | ||
| 13 | $(CC) $(CFLAGS) -o reverb reverb.c $(OBJS) | ||
| 14 | strip reverb | ||
| 15 | |||
| 16 | network.o: network.c | ||
| 17 | $(CC) $(CFLAGS) -c network.c | ||
| 18 | |||
