summaryrefslogtreecommitdiff
path: root/other/b-scan/tmp/support/Makefile
blob: 4025e1f598429c03d76452e9e0aa0caab7ca2e77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
CC=gcc
COPT=-Wall -ggdb -I../include
DEFS=#-DDEBUG
OBJ=hpuxdl.o snprintf.o

# HPUX 11.00
# DEFS=-DNEED_SNPRINTF -DHAVE_SHL_LOAD #-DDEBUG

# HPUX 10.20
# DEFS=-DHP10 -DNEED_SNPRINTF -DHAVE_SHL_LOAD #-DDEBUG

all:	$(OBJ)

.c.o:
	$(CC) $(COPT) $(DEFS) -c $<

clean:
	rm -f $(OBJ) core *~