add project makefile

This commit is contained in:
gandc 2024-11-23 19:41:38 +03:00
parent 5b1dbe5db0
commit 332dbd802d
Signed by: gandc
GPG Key ID: 9F77B03D43C42CB4

13
Makefile Normal file
View File

@ -0,0 +1,13 @@
SUBDIRS = libmysyslog libmysyslog-text libmysyslog-json libmysyslog-client libmysyslog-daemon
all:
@for dir in $(SUBDIRS); do \
$(MAKE) -C $$dir; \
done
clean:
@for dir in $(SUBDIRS); do \
$(MAKE) -C $$dir clean; \
done
.PHONY: all clean