diff options
| author | Root THC | 2026-02-24 12:42:47 +0000 |
|---|---|---|
| committer | Root THC | 2026-02-24 12:42:47 +0000 |
| commit | c9cbeced5b3f2bdd7407e29c0811e65954132540 (patch) | |
| tree | aefc355416b561111819de159ccbd86c3004cf88 /other/b-scan/tmp/support/Makefile | |
| parent | 073fe4bf9fca6bf40cef2886d75df832ef4b6fca (diff) | |
initial
Diffstat (limited to 'other/b-scan/tmp/support/Makefile')
| -rw-r--r-- | other/b-scan/tmp/support/Makefile | 20 |
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 @@ | |||
| 1 | CC=gcc | ||
| 2 | COPT=-Wall -ggdb -I../include | ||
| 3 | DEFS=#-DDEBUG | ||
| 4 | OBJ=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 | |||
| 12 | all: $(OBJ) | ||
| 13 | |||
| 14 | .c.o: | ||
| 15 | $(CC) $(COPT) $(DEFS) -c $< | ||
| 16 | |||
| 17 | clean: | ||
| 18 | rm -f $(OBJ) core *~ | ||
| 19 | |||
| 20 | |||
