mirror of
git://git.proxmox.com/git/pve-common.git
synced 2025-01-06 21:17:37 +03:00
85bc5755c0
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
17 lines
338 B
Makefile
17 lines
338 B
Makefile
SUBDIRS = etc_network_interfaces
|
|
|
|
all:
|
|
|
|
.PHONY: check install clean distclean
|
|
|
|
export PERLLIB=../src
|
|
|
|
check: lock_file.test calendar_event_test.test convert_size_test.test procfs_tests.test format_test.test section_config_test.test
|
|
for d in $(SUBDIRS); do $(MAKE) -C $$d check; done
|
|
|
|
%.test: %.pl
|
|
TZ=UTC-1 ./$<
|
|
|
|
distclean: clean
|
|
clean:
|