mirror of
https://git.proxmox.com/git/libxdgmime-perl
synced 2025-08-19 07:43:31 +00:00
13 lines
220 B
Makefile
13 lines
220 B
Makefile
SUBDIRS=src
|
|
|
|
all-recursive clean-recursive:
|
|
target=`echo $@ | sed s/-recursive//`; \
|
|
for subdir in $(SUBDIRS); do \
|
|
(cd $$subdir && make "$$target") \
|
|
done;
|
|
|
|
all: all-recursive
|
|
|
|
clean: clean-recursive
|
|
rm -f *~
|