mirror of
https://salsa.debian.org/dskoll/remind.git
synced 2026-04-16 06:18:47 +02:00
-- Fixed install target in makefile.
-- Added __sun__ test to queue.c
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
# Makefile.in for REMIND
|
||||
#
|
||||
# $Id: Makefile.in,v 1.9 1998-05-05 03:16:26 dfs Exp $
|
||||
# $Id: Makefile.in,v 1.10 1998-05-10 01:29:12 dfs Exp $
|
||||
|
||||
VERSION= 03.00.19
|
||||
SHELL= /bin/sh
|
||||
@@ -44,10 +44,14 @@ remind: $(REMINDOBJS)
|
||||
@CC@ @LDFLAGS@ -o remind $(REMINDOBJS) @LIBS@
|
||||
|
||||
install: all
|
||||
$(INSTALL_PROGRAM) $(PROGS) $(SCRIPTS) $(bindir)
|
||||
for prog in $(PROGS) $(SCRIPTS) ; do \
|
||||
$(INSTALL_PROGRAM) $$prog $(bindir) ; \
|
||||
done
|
||||
-strip $(bindir)/remind
|
||||
-strip $(bindir)/rem2ps
|
||||
$(INSTALL_DATA) $(MANS) $(mandir)/man1
|
||||
for man in $(MANS) ; do \
|
||||
$(INSTALL_DATA) $$man $(mandir)/man1 ; \
|
||||
done
|
||||
|
||||
clean:
|
||||
rm -f *.o *~ core *.bak $(PROGS)
|
||||
|
||||
@@ -9,8 +9,13 @@
|
||||
/* */
|
||||
/***************************************************************/
|
||||
|
||||
/* Solaris needs this to get select() prototype */
|
||||
#ifdef __sun__
|
||||
#define __EXTENSIONS__ 1
|
||||
#endif
|
||||
|
||||
#include "config.h"
|
||||
static char const RCSID[] = "$Id: queue.c,v 1.7 1998-03-30 05:08:52 dfs Exp $";
|
||||
static char const RCSID[] = "$Id: queue.c,v 1.8 1998-05-10 01:29:12 dfs Exp $";
|
||||
|
||||
/* We only want object code generated if we have queued reminders */
|
||||
#ifdef HAVE_QUEUED
|
||||
|
||||
Reference in New Issue
Block a user