1#
2#   @(#)Makefile.std	7.3 01/12/28
3#
4#   Makefile for LabelH
5#
6#   Written by Ti Kan
7#   E-mail: xmcd@amb.org
8#
9#   See the COPYRIGHT file for information about the LabelH widget.
10#
11
12include ../make.inc
13
14LIBLABELH=libLabelH.a
15
16SRCS=	LabelH.c
17OBJS=	LabelH.o
18
19all: $(LIBLABELH)
20
21$(LIBLABELH): $(OBJS)
22	$(RM) $@
23	$(AR) $@ $(OBJS)
24	$(RANLIB) $@
25
26Makefile:
27	@echo "	labelh_d/Makefile"
28	@$(RM) Makefile
29	@cp Makefile.std Makefile
30
31Makefiles: Makefile
32
33install:
34
35clean:
36	$(RM) *.o *.a core .emacs_* tags TAGS
37
38depend:
39	$(DEPEND) $(DEPENDFLAGS) -- $(DEFINES) $(INCDIRS) $(ARCH) -- $(SRCS)
40
41tags:
42	$(TAGS) -w *.[ch]
43	$(TAGS) -xw *.[ch] > TAGS
44
45