summaryrefslogtreecommitdiff
path: root/other/b-scan/tmp/support/Makefile
diff options
context:
space:
mode:
authorRoot THC2026-02-24 12:42:47 +0000
committerRoot THC2026-02-24 12:42:47 +0000
commitc9cbeced5b3f2bdd7407e29c0811e65954132540 (patch)
treeaefc355416b561111819de159ccbd86c3004cf88 /other/b-scan/tmp/support/Makefile
parent073fe4bf9fca6bf40cef2886d75df832ef4b6fca (diff)
initial
Diffstat (limited to 'other/b-scan/tmp/support/Makefile')
-rw-r--r--other/b-scan/tmp/support/Makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/other/b-scan/tmp/support/Makefile b/other/b-scan/tmp/support/Makefile
new file mode 100644
index 0000000..4025e1f
--- /dev/null
+++ b/other/b-scan/tmp/support/Makefile
@@ -0,0 +1,20 @@
1CC=gcc
2COPT=-Wall -ggdb -I../include
3DEFS=#-DDEBUG
4OBJ=hpuxdl.o snprintf.o
5
6# HPUX 11.00
7# DEFS=-DNEED_SNPRINTF -DHAVE_SHL_LOAD #-DDEBUG
8
9# HPUX 10.20
10# DEFS=-DHP10 -DNEED_SNPRINTF -DHAVE_SHL_LOAD #-DDEBUG
11
12all: $(OBJ)
13
14.c.o:
15 $(CC) $(COPT) $(DEFS) -c $<
16
17clean:
18 rm -f $(OBJ) core *~
19
20