mirror of
https://github.com/cc65/cc65.git
synced 2024-11-01 11:04:34 +00:00
352ceb166c
The [un]install make goals have a rather fixed meaning for *ix users. The simple symlinks provided here don't match the expectations users have from [un]install. Therefore it is appropriate to rename them to "something" not tied to specific expectations.
20 lines
388 B
Makefile
20 lines
388 B
Makefile
all mostlyclean clean:
|
|
@$(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 avail unavail bin lib
|
|
|
|
.SUFFIXES:
|