1#
2#       Makefile for uepack
3#
4#       Copyright (C) 2000-2004 GFD Dennou Club. All rights reserved.
5#
6
7include ../../../Mkinclude
8
9LIBNAME		= uepack
10LIBFSRCS	= uetone.c uetonf.c uetonc.c uezchk.c uegtla.c uegtlb.c \
11		      ueitlv.c uestln.c iueton.c uearea.c ueiget.c ueiqnp.c \
12              uelget.c uelqnp.c uerget.c uerqnp.c uepget.c uepqnp.c \
13		      uetonz.c uetonb.c
14LIBCSRCS	=
15LIBSRCS		= $(LIBFSRCS) $(LIBCSRCS)
16LIBFOBJS	= uetone.o uetonf.o uetonc.o uezchk.o uegtla.o uegtlb.o \
17		      ueitlv.o uestln.o iueton.o uearea.o ueiget.o ueiqnp.o \
18           	  uelget.o uelqnp.o uerget.o uerqnp.o uepget.o uepqnp.o \
19		      uetonz.o uetonb.o
20
21LIBCOBJS	=
22LIBOBJS		= $(LIBFOBJS) $(LIBCOBJS)
23
24object: $(LIBOBJS)
25
26library: archive ranlib
27
28archive:
29	@$(AR) $(ARFLAGS) $(LDCLLIBFILE) $(LIBOBJS)
30
31ranlib:
32	$(RANLIB) $(LDCLLIBFILE)
33
34clean:
35	$(RM) *.o *~
36