home *** CD-ROM | disk | FTP | other *** search
/ Serving the Web / ServingTheWeb1995.disc1of1.iso / linux / slacksrce / d / libc / libc-4.6 / libc-4 / libc-linux / des / Makefile.old < prev    next >
Encoding:
Makefile  |  1994-09-15  |  367 b   |  22 lines

  1. OPTS= -DALT_ECB
  2.  
  3. CFLAGS = -I. -O2 -m486 $(OPTS)
  4.  
  5. OBJS = des_crypt.o des_soft.o des_impl.o
  6.  
  7. all:    libdes.a destest speed
  8.  
  9. destest: destest.o libdes.a
  10.     $(CC) $(CFLAGS) -o destest destest.o libdes.a
  11.  
  12. speed: speed.o libdes.a
  13.     $(CC) $(CFLAGS) -o speed speed.o libdes.a
  14.  
  15.  
  16. libdes.a: ${OBJS}
  17.     ar cru libdes.a ${OBJS}
  18.     ranlib libdes.a
  19.  
  20. clean:
  21.     rm -f *.o libdes.a destest speed
  22.