summaryrefslogtreecommitdiff
path: root/chat
diff options
context:
space:
mode:
authorEivind Næss <eivnaes@yahoo.com>2021-07-20 09:20:04 -0700
committerEivind Næss <eivnaes@yahoo.com>2021-07-20 09:20:04 -0700
commit2b167650a9a306c3ab9f24f10fd3384e2fa1028e (patch)
tree7172d42a850a41d19b06ebd3c825b234cd7d0100 /chat
parent75f1f5fde9fa6a64d0c35af6dfac5086a0739334 (diff)
downloadppp-2b167650a9a306c3ab9f24f10fd3384e2fa1028e.tar.gz
Remove obsolete Makefile(s) and configure scripts
Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
Diffstat (limited to 'chat')
-rw-r--r--chat/Makefile.linux34
-rw-r--r--chat/Makefile.sol219
2 files changed, 0 insertions, 53 deletions
diff --git a/chat/Makefile.linux b/chat/Makefile.linux
deleted file mode 100644
index 2cd1f3f..0000000
--- a/chat/Makefile.linux
+++ /dev/null
@@ -1,34 +0,0 @@
-CROSS_COMPILE=@CROSS_COMPILE@
-CC=$(CROSS_COMPILE)@CC@
-COPTS=@CFLAGS@
-
-PREFIX = @DESTDIR@
-DESTDIR = $(INSTROOT)$(PREFIX)
-BINDIR = $(DESTDIR)/sbin
-MANDIR = $(DESTDIR)/share/man/man8
-
-CDEF1= -DTERMIOS # Use the termios structure
-CDEF2= -DSIGTYPE=void # Standard definition
-CDEF3= -UNO_SLEEP # Use the usleep function
-CDEF4= -DFNDELAY=O_NDELAY # Old name value
-CDEFS= $(CDEF1) $(CDEF2) $(CDEF3) $(CDEF4)
-
-CFLAGS= $(COPTS) $(CDEFS)
-
-INSTALL= install
-
-all: chat
-
-chat: chat.o
- $(CC) $(LDFLAGS) -o chat chat.o
-
-chat.o: chat.c
- $(CC) -c $(CFLAGS) -o chat.o chat.c
-
-install: chat
- mkdir -p $(BINDIR) $(MANDIR)
- $(INSTALL) -c chat $(BINDIR)
- $(INSTALL) -c -m 644 chat.8 $(MANDIR)
-
-clean:
- rm -f chat.o chat *~
diff --git a/chat/Makefile.sol2 b/chat/Makefile.sol2
deleted file mode 100644
index 10d3314..0000000
--- a/chat/Makefile.sol2
+++ /dev/null
@@ -1,19 +0,0 @@
-#
-# Makefile for chat on Solaris 2
-#
-
-include ../Makedefs.com
-
-CFLAGS = $(COPTS) -DNO_USLEEP -DSOL2
-
-all: chat
-
-chat: chat.o
- $(CC) -o chat chat.o
-
-install: chat
- $(INSTALL) -f $(BINDIR) chat
- $(INSTALL) -m 444 -f $(MANDIR)/man8 chat.8
-
-clean:
- rm -f *~ *.o chat