From 8b4560876329df99a3cffb26cded0a33c7d350fd Mon Sep 17 00:00:00 2001 From: Hans Koch Date: Tue, 22 Mar 2022 11:05:18 +0100 Subject: [PATCH] Updated: build script and readme --- .gitignore | 5 +++++ Imakefile | 6 ++++-- README | 7 ++++++- 3 files changed, 15 insertions(+), 3 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7082609 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +Makefile +Makefile.bak +mlclock +mlckock.o +mlckock_man diff --git a/Imakefile b/Imakefile index 837c9b1..6e0473c 100644 --- a/Imakefile +++ b/Imakefile @@ -7,7 +7,9 @@ OPTION = # If function dosen't find , add -lsocket or whatever you need . # This is example . #ADD_LIBRARIES = -lxpg4 -lsocket -lnsl -ADD_LIBRARIES = -lxpg4 +ifeq ($(uname -s), Solaris) + ADD_LIBRARIES = -lxpg4 +endif #---You shouldn't have to change anything below this line.--- @@ -18,4 +20,4 @@ OBJS = $(SRCS:.c=.o) DEFINES = $(OPTION) -DRCFILE=\"${RCFILE}\" -ComplexProgramTarget( mlclock ) +ComplexProgramTarget(mlclock) diff --git a/README b/README index 2a9be54..85d7d63 100644 --- a/README +++ b/README @@ -4,6 +4,7 @@ HOW TO COMPILE 1) xmkmf 2) make + 3) make install -or- @@ -17,4 +18,8 @@ HOW TO USE ABOUT BUGS - Send mail to hideki@hry.info.gifu-u.ac.jp + Open a GitHub Issue + +ORIGINAL AUTHOR: + + hideki@hry.info.gifu-u.ac.jp