mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
This commit is based on the s390-tools-1.39.0 version. Changes on top of s390-tools-1.39.0: - Add MIT license to all source files - Add LICENSE file - Transform REAMDE to README.md (markdown) - Add AUTHORS.md file - Add CONTRIBUTING.md file - Move changelog from README to CHANGELOG.md file Reviewed-by: Stefan Haberland <sth@linux.vnet.ibm.com> Signed-off-by: Michael Holzheu <holzheu@linux.vnet.ibm.com>
49 lines
1.3 KiB
Makefile
49 lines
1.3 KiB
Makefile
include ../common.mak
|
|
|
|
lib = libutil.a
|
|
|
|
examples = util_base_example \
|
|
util_panic_example \
|
|
util_path_example \
|
|
util_scandir_example \
|
|
util_file_example \
|
|
util_libc_example \
|
|
util_opt_example \
|
|
util_opt_command_example \
|
|
util_prg_example \
|
|
util_rec_example
|
|
|
|
all: $(lib) $(examples)
|
|
|
|
objects = util_base.o \
|
|
util_path.o \
|
|
util_scandir.o \
|
|
util_file.o \
|
|
util_libc.o \
|
|
util_list.o \
|
|
util_opt.o \
|
|
util_panic.o \
|
|
util_part.o \
|
|
util_prg.o \
|
|
util_proc.o \
|
|
util_rec.o
|
|
|
|
util_base_example: util_base_example.o $(rootdir)/libutil/libutil.a
|
|
util_panic_example: util_panic_example.o $(rootdir)/libutil/libutil.a
|
|
util_path_example: util_path_example.o $(rootdir)/libutil/libutil.a
|
|
util_scandir_example: util_scandir_example.o $(rootdir)/libutil/libutil.a
|
|
util_file_example: util_file_example.o $(rootdir)/libutil/libutil.a
|
|
util_libc_example: util_libc_example.o $(rootdir)/libutil/libutil.a
|
|
util_opt_example: util_opt_example.o $(rootdir)/libutil/libutil.a
|
|
util_opt_command_example: util_opt_command_example.o $(rootdir)/libutil/libutil.a
|
|
util_panic_example: util_panic_example.o $(rootdir)/libutil/libutil.a
|
|
util_prg_example: util_prg_example.o $(rootdir)/libutil/libutil.a
|
|
util_rec_example: util_rec_example.o $(rootdir)/libutil/libutil.a
|
|
|
|
$(lib): $(objects)
|
|
|
|
install: all
|
|
|
|
clean:
|
|
rm -f *.o $(lib) $(examples)
|