Improved building of RFCs; added empty directory for ITU specs
[quick-der] / Makefile
1 # SUBDIRS = lib asn2qder test rfc arpa2
2 SUBDIRS = lib tool test rfc
3
4 all:
5         #
6         # To incorporate subprojects with valuable add-ons, run:
7         #
8         # git submodule update --init
9         #
10         @ $(foreach d,$(SUBDIRS),make -C '$d' all &&) echo "Made all subdirectories"
11
12 install:
13         @ $(foreach d,$(SUBDIRS),make -C '$d' all &&) echo "Installed all subdirectories"
14
15 uninstall:
16         @ $(foreach d,$(SUBDIRS),make -C '$d' all &&) echo "Uninstalled all subdirectories"
17
18 clean:
19         @ $(foreach d,$(SUBDIRS),make -C '$d' all &&) echo "Cleaned all subdirectories"