Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Per Cederqvist
lyskom-server-ceder-1616-generations-topgit
Commits
a56b9b7f
Commit
a56b9b7f
authored
Aug 22, 1991
by
Per Cederqvist
Browse files
Don't pass CC, CFLAGS et c via the environment. General cleanups.
parent
aeb3b7e5
Changes
6
Hide whitespace changes
Inline
Side-by-side
src/include/Makefile
View file @
a56b9b7f
# Makefile for LysKOM
#
###############################################################################
#
# SPECIAL CONSIDERATIONS:
#
# - Requires GNU make.
# - CC, OPTIMIZE-FLAGS and other make variables are passed down
# in the environment.
# - C compiler must be ANSI conformant.
#
###############################################################################
#
# SPECIAL TARGETS:
###############################################################################
# Directories that you might want to override via the environment.
ifndef
TOPDIR
TOPDIR
=
/usr/lyskom/src
endif
ifndef
SCRIPTDIR
SCRIPTDIR
=
$(TOPDIR)
/scripts
endif
TARGET
=
-DCLIENT
include
$(SCRIPTDIR)/import.make
# All directories that make should traverse to when doing clean etc.
TARGET
=
-DCLIENT
SUBDIRS
=
ansi server
...
...
@@ -39,7 +13,7 @@ all:
for
i
in
$(SUBDIRS)
;
\
do
\
echo
making all
in
directory
$$
i
;
\
(
cd
$$
i
;
$(MAKE)
all
)
;
\
(
cd
$$
i
;
$(MAKE)
$(EXPORTS)
all
)
;
\
done
...
...
@@ -51,26 +25,15 @@ install:
for
i
in
$(SUBDIRS)
;
\
do
\
echo
making
install
in
directory
$$
i
;
\
(
cd
$$
i
;
$(MAKE)
install
)
;
\
(
cd
$$
i
;
$(MAKE)
$(EXPORTS)
install
)
;
\
done
clean
:
rm
-vf
${OBJECTS}
*
~ core temp-Makefile Distfile
*
.o
$(RM)
*
~ core temp-Makefile Distfile
*
.o
for
i
in
$(SUBDIRS)
;
\
do
\
echo
making clean
in
directory
$$
i
;
\
(
cd
$$
i
;
$(MAKE)
clean
)
;
\
(
cd
$$
i
;
$(MAKE)
$(EXPORTS)
clean
)
;
\
done
depend
:
for
i
in
$(SUBDIRS)
;
\
do
\
echo
making depend
in
directory
$$
i
;
\
(
cd
$$
i
;
$(MAKE)
depend
)
;
\
done
>
dependencies
specials
:
;
include
dependencies
depend
:
;
\ No newline at end of file
src/include/server/Makefile
View file @
a56b9b7f
# Makefile for LysKOM
#
###############################################################################
#
# SPECIAL CONSIDERATIONS:
#
# - Requires GNU make.
# - CC, OPTIMIZE-FLAGS and other make variables are passed down
# in the environment.
# - C compiler must be ANSI conformant.
#
###############################################################################
#
# SPECIAL TARGETS:
###############################################################################
# Directories that you might want to override via the environment.
ifndef
TOPDIR
TOPDIR
=
/usr/lyskom/src
endif
ifndef
SCRIPTDIR
SCRIPTDIR
=
$(TOPDIR)
/scripts
endif
TARGET
=
-DCLIENT
include
$(SCRIPTDIR)/import.make
# All directories that make should traverse to when doing clean etc.
TARGET
=
-DCLIENT
INSTALL-HDRS
=
smalloc.h
...
...
@@ -46,9 +19,4 @@ install:
clean
:
rm
-vf
${OBJECTS}
*
~ core temp-Makefile Distfile
*
.o
depend
:
>
dependencies
specials
:
;
include
dependencies
depend
:
;
src/libraries/Makefile
View file @
a56b9b7f
TOPDIR
=
/usr/lyskom/src
SCRIPTDIR
=
$(TOPDIR)
/scripts
include
$(SCRIPTDIR)/import.make
# All directories that make should traverse to when doing clean etc.
# Note that client-support depends on libmisc.
...
...
@@ -7,7 +12,7 @@ all:
for
i
in
$(SUBDIRS)
;
\
do
\
echo
making all
in
directory
$$
i
;
\
(
cd
$$
i
;
$(MAKE)
all
)
\
(
cd
$$
i
;
$(MAKE)
$(EXPORTS)
all
)
\
done
...
...
@@ -15,8 +20,7 @@ depend:
for
i
in
$(SUBDIRS)
;
\
do
\
echo
making depend
in
directory
$$
i
;
\
(
cd
$$
i
;
$(MAKE)
depend
)
;
\
echo
make depend
in
directory
$$
i ready.
;
\
(
cd
$$
i
;
$(MAKE)
$(EXPORTS)
depend
)
;
\
done
...
...
@@ -24,7 +28,7 @@ install:
for
i
in
$(SUBDIRS)
;
\
do
\
echo
making
install
in
directory
$$
i
;
\
(
cd
$$
i
;
$(MAKE)
install
)
\
(
cd
$$
i
;
$(MAKE)
$(EXPORTS)
install
)
\
done
...
...
@@ -32,7 +36,7 @@ install-headers:
for
i
in
$(SUBDIRS)
;
\
do
\
echo
making install-headers
in
directory
$$
i
;
\
(
cd
$$
i
;
$(MAKE)
install-headers
)
\
(
cd
$$
i
;
$(MAKE)
$(EXPORTS)
install-headers
)
\
done
...
...
@@ -41,6 +45,6 @@ clean:
for
i
in
$(SUBDIRS)
;
\
do
\
echo
making clean
in
directory
$$
i
;
\
(
cd
$$
i
;
$(MAKE)
clean
)
\
(
cd
$$
i
;
$(MAKE)
$(EXPORTS)
clean
)
\
done
src/libraries/libansi/Makefile
View file @
a56b9b7f
# Makefile for LysKOM
#
###############################################################################
#
# SPECIAL CONSIDERATIONS:
#
# - Requires GNU make.
# - CC, OPTIMIZE-FLAGS and other make variables are passed down
# in the environment.
# - C compiler must be ANSI conformant.
#
###############################################################################
#
# SPECIAL TARGETS:
###############################################################################
# Directories that you might want to override via the environment.
ifndef
TOPDIR
TOPDIR
=
/usr/lyskom/src
endif
ifndef
SCRIPTDIR
SCRIPTDIR
=
$(TOPDIR)
/scripts
endif
TARGET
=
-DCLIENT
include
$(SCRIPTDIR)/import.make
# All directories that make should traverse to when doing clean etc.
TARGET
=
-DCLIENT
LIBNAME
=
libansi.a
...
...
src/libraries/libcommon/Makefile
View file @
a56b9b7f
# Makefile for LysKOM
#
###############################################################################
#
# SPECIAL CONSIDERATIONS:
#
# - Requires GNU make.
# - CC, OPTIMIZE-FLAGS and other make variables are passed down
# in the environment.
# - C compiler must be ANSI conformant.
#
###############################################################################
#
# SPECIAL TARGETS:
###############################################################################
# Directories that you might want to override via the environment.
ifndef
TOPDIR
TOPDIR
=
/usr/lyskom/src
endif
ifndef
SCRIPTDIR
SCRIPTDIR
=
$(TOPDIR)
/scripts
endif
TARGET
=
-DCLIENT
include
$(SCRIPTDIR)/import.make
# All directories that make should traverse to when doing clean etc.
TARGET
=
-DCLIENT
LIBOBJS
=
kom-errno.o misc-parser.o parser.o
...
...
@@ -51,7 +24,7 @@ server-dir:
.PHONY
:
liblyskom-server.a
liblyskom-server.a
:
server-dir
(
cd
server-dir
;
make
-f
../Makefile ../
$@
TARGET
=
-DSERVER
)
(
cd
server-dir
;
make
$(EXPORTS)
-f
../Makefile ../
$@
TARGET
=
-DSERVER
)
ranlib
$@
...
...
@@ -60,7 +33,7 @@ liblyskom-server.a: server-dir
.PHONY
:
liblyskom-client.a
liblyskom-client.a
:
client-dir
(
cd
client-dir
;
make
-f
../Makefile ../
$@
TARGET
=
-DCLIENT
)
(
cd
client-dir
;
make
$(EXPORTS)
-f
../Makefile ../
$@
TARGET
=
-DCLIENT
)
ranlib
$@
...
...
@@ -84,11 +57,6 @@ install-headers:
tags
:
etags
-t
$(INCLUDEDIR)
/
*
.h
*
.[hc]
#rdist: clean
# echo "(/usr/local/src/2kom/common) -> (nanny.lysator.liu.se)" >Distfile
# echo "install;" >>Distfile
# rdist
# Recreate the Makefile from Makefile
include
$(SCRIPTDIR)/Parallell-depend.make
...
...
src/libraries/libmisc/Makefile
View file @
a56b9b7f
...
...
@@ -13,24 +13,12 @@
#
# SPECIAL TARGETS:
###############################################################################
# Directories that you might want to override via the environment.
ifndef
TOPDIR
TOPDIR
=
/usr/lyskom/src
endif
ifndef
SCRIPTDIR
SCRIPTDIR
=
$(TOPDIR)
/scripts
endif
TARGET
=
-DCLIENT
include
$(SCRIPTDIR)/import.make
# All directories that make should traverse to when doing clean etc.
TARGET
=
-DCLIENT
LIBNAME
=
libmisc.a
...
...
@@ -38,9 +26,6 @@ LIBOBJS = pom.o s-collat-tabs.o s-string.o zmalloc.o
INSTALL-HDRS
=
pom.h s-collat-tabs.h s-string.h zmalloc.h
#OBJECTS = numlist.o numlist2.o pom.o s-collat-tabs.o s-string.o \
# testnumlist.o zmalloc.o
all
:
$(LIBNAME)
$(LIBNAME)
:
$(LIBOBJS)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment