mirror of
https://github.com/mikpe/pdp10-tools.git
synced 2026-01-13 15:27:35 +00:00
11 lines
164 B
Makefile
11 lines
164 B
Makefile
SUBDIRS= lib 8to9 ar as nm od readelf
|
|
|
|
all:
|
|
make TARGET= subdirs
|
|
|
|
clean:
|
|
make TARGET=clean subdirs
|
|
|
|
subdirs:
|
|
for d in $(SUBDIRS); do make -C $$d $(TARGET); done
|