mirror of
https://github.com/cc65/cc65.git
synced 2024-11-16 02:10:52 +00:00
e320fe3db8
The 'install' target primarily aims to support pacaking tools. Therefore... - It just presumes a "capable" install program to be present. - There's intentionally no 'uninstall' target.
20 lines
404 B
Makefile
20 lines
404 B
Makefile
all mostlyclean clean install:
|
|
@$(MAKE) -C src --no-print-directory $@
|
|
@$(MAKE) -C libsrc --no-print-directory $@
|
|
|
|
avail unavail bin:
|
|
@$(MAKE) -C src --no-print-directory $@
|
|
|
|
lib:
|
|
@$(MAKE) -C libsrc --no-print-directory $@
|
|
|
|
%65:
|
|
@$(MAKE) -C src --no-print-directory $@
|
|
|
|
%:
|
|
@$(MAKE) -C libsrc --no-print-directory $@
|
|
|
|
.PHONY: all mostlyclean clean install avail unavail bin lib
|
|
|
|
.SUFFIXES:
|