summaryrefslogtreecommitdiff
path: root/other/zylyx/src/Makefile
diff options
context:
space:
mode:
authorSkyperTHC2026-03-03 06:28:55 +0000
committerSkyperTHC2026-03-03 06:28:55 +0000
commit5d3573ef7a109ee70416fe94db098fe6a769a798 (patch)
treedc2d5b294c9db8ab2db7433511f94e1c4bb8b698 /other/zylyx/src/Makefile
parentc6c59dc73cc4586357f93ab38ecf459e98675cc5 (diff)
packetstorm sync
Diffstat (limited to 'other/zylyx/src/Makefile')
-rw-r--r--other/zylyx/src/Makefile32
1 files changed, 32 insertions, 0 deletions
diff --git a/other/zylyx/src/Makefile b/other/zylyx/src/Makefile
new file mode 100644
index 0000000..05b9167
--- /dev/null
+++ b/other/zylyx/src/Makefile
@@ -0,0 +1,32 @@
1
2# zylyx - makefile
3# by scut of teso
4
5DFLAGS=-Wall
6LIBS=-lpthread -lslang
7CC=gcc
8CFLAGS=$(DFLAGS)
9PREFIX=/usr/local
10
11all: zylyx
12
13clean:
14 rm -f *.o
15
16zylyx: common.o network.o proxy.o screen.o zylyx.c
17 $(CC) $(CFLAGS) -o zylyx zylyx.c common.o network.o proxy.o screen.o $(LIBS)
18 strip zylyx
19 mv zylyx ../
20
21common.o: common.c
22 $(CC) $(CFLAGS) -c common.c
23
24network.o: network.c
25 $(CC) $(CFLAGS) -c network.c
26
27proxy.o: proxy.c
28 $(CC) $(CFLAGS) -c proxy.c
29
30screen.o: screen.c
31 $(CC) $(CFLAGS) -c screen.c
32