mirror of
https://github.com/mikpe/pdp10-tools.git
synced 2026-04-02 04:02:02 +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
|