2016-01-12 16:25:30 -05:00
|
|
|
DIR=jpake
|
|
|
|
TOP=../..
|
2015-12-09 21:11:49 +01:00
|
|
|
|
|
|
|
CFLAGS= $(INCLUDES) $(CFLAG)
|
|
|
|
|
2016-01-12 16:25:30 -05:00
|
|
|
GENERAL= Makefile
|
2015-12-09 21:11:49 +01:00
|
|
|
|
|
|
|
LIB=$(TOP)/libcrypto.a
|
2016-01-12 16:25:30 -05:00
|
|
|
LIBOBJ=jpake.o jpake_err.o
|
|
|
|
LIBSRC=jpake.c jpake_err.c
|
2015-12-09 21:11:49 +01:00
|
|
|
SRC= $(LIBSRC)
|
|
|
|
|
2016-01-12 16:25:30 -05:00
|
|
|
HEADER=
|
|
|
|
|
|
|
|
ALL= $(GENERAL) $(SRC) $(HEADER)
|
2015-12-09 21:11:49 +01:00
|
|
|
|
|
|
|
top:
|
|
|
|
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
|
|
|
|
|
|
|
all: lib
|
|
|
|
|
|
|
|
lib: $(LIBOBJ)
|
|
|
|
$(AR) $(LIB) $(LIBOBJ)
|
|
|
|
$(RANLIB) $(LIB) || echo Never mind.
|
|
|
|
@touch lib
|
|
|
|
|
|
|
|
files:
|
|
|
|
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
|
|
|
|
|
|
|
depend:
|
2016-01-29 13:29:45 -05:00
|
|
|
$(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
2015-12-09 21:11:49 +01:00
|
|
|
|
|
|
|
clean:
|
2016-01-12 16:25:30 -05:00
|
|
|
rm -f *.s *.o *.obj des lib tags core .pure .nfs* *.old *.bak fluff
|
2015-12-09 21:11:49 +01:00
|
|
|
|
|
|
|
# DO NOT DELETE THIS LINE -- make depend depends on it.
|