## Copyright (C) 2000-2004 Peter Selinger. ## This file is part of ccrypt. It is free software and it is covered ## by the GNU general public license. See the file COPYING for details. ## Process this file with automake to produce Makefile.in bin_PROGRAMS = ccrypt noinst_PROGRAMS = maketables BUILT_SOURCES = tables.c CLEANFILES = tables.c EXTRA_DIST = getopt.c getopt1.c getopt.h unixcrypt3.c unixcrypt3.h ccrypt_SOURCES = main.c main.h traverse.c traverse.h xalloc.c xalloc.h \ readkey.c readkey.h ccrypt.c ccrypt.h ccryptlib.c ccryptlib.h \ unixcryptlib.c unixcryptlib.h rijndael.h rijndael.c tables.h tables.c ccrypt_LDADD = @EXTRA_OBJS@ ccrypt_DEPENDENCIES = @EXTRA_OBJS@ maketables_SOURCES = maketables.c tables.c: maketables ./maketables > tables.c dist-hook: rm -f $(distdir)/tables.c install-exec-hook: [ "@NAME@" = ccrypt ] || \ mv -f $(DESTDIR)$(bindir)/ccrypt $(DESTDIR)$(bindir)/@NAME@ ln -f -s @NAME@ $(DESTDIR)$(bindir)/@NAMEENCRYPT@ ln -f -s @NAME@ $(DESTDIR)$(bindir)/@NAMEDECRYPT@ ln -f -s @NAME@ $(DESTDIR)$(bindir)/@NAMECAT@ uninstall-local: rm -f $(DESTDIR)$(bindir)/@NAME@ rm -f $(DESTDIR)$(bindir)/@NAMEENCRYPT@ rm -f $(DESTDIR)$(bindir)/@NAMEDECRYPT@ rm -f $(DESTDIR)$(bindir)/@NAMECAT@