summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2003-12-13 20:06:59 +0000
committerMike Frysinger <vapier@gentoo.org>2003-12-13 20:06:59 +0000
commit8143b43cd56546e661d13fe0117b04c8e177fa1d (patch)
tree45d4b702b0ca21ad8624c989e26d9be8fc5e0c70 /app-shells
parentrecommitting as -r2 (diff)
downloadgentoo-2-8143b43cd56546e661d13fe0117b04c8e177fa1d.tar.gz
gentoo-2-8143b43cd56546e661d13fe0117b04c8e177fa1d.tar.bz2
gentoo-2-8143b43cd56546e661d13fe0117b04c8e177fa1d.zip
old
Diffstat (limited to 'app-shells')
-rw-r--r--app-shells/sash/files/Makefile31
1 files changed, 0 insertions, 31 deletions
diff --git a/app-shells/sash/files/Makefile b/app-shells/sash/files/Makefile
deleted file mode 100644
index df3966e16f70..000000000000
--- a/app-shells/sash/files/Makefile
+++ /dev/null
@@ -1,31 +0,0 @@
-#
-# Makefile for sash
-#
-# The HAVE_GZIP definition adds the -gzip and -gunzip commands.
-# The HAVE_EXT2 definition adds the -chattr and -lsattr comamnds.
-#
-
-CFLAGS = -m486 -march=i486 -O2 -Wall -Wmissing-prototypes -DHAVE_READLINE
-#CFLAGS = -pipe -O2 -DHAVE_GZIP -DHAVE_EXT2 -DHAVE_READLINE
-LDFLAGS =
-LIBS = -lreadline -lncurses
-
-
-BINDIR = /bin
-MANDIR = /usr/man/man1
-
-
-OBJS = sash.o cmds.o utils.o
-
-
-sash: $(OBJS)
- $(CC) $(LDFLAGS) -o sash $(OBJS) $(LIBS)
-
-clean:
- rm -f $(OBJS) sash
-
-install: sash
- cp sash $(BINDIR)/sash
- cp sash.1 $(MANDIR)/sash.1
-
-$(OBJS): sash.h