12 lines
162 B
Makefile
12 lines
162 B
Makefile
SUBDIRS=lib
|
|
|
|
typefiles:
|
|
for d in $(SUBDIRS); do \
|
|
$(MAKE) -C $$d typefiles; \
|
|
done
|
|
|
|
typedefs:
|
|
for d in $(SUBDIRS); do \
|
|
$(MAKE) -C $$d typedefs; \
|
|
done
|