mirror of
https://github.com/st3fan/ewm.git
synced 2025-02-10 12:30:32 +00:00
12 lines
125 B
Makefile
12 lines
125 B
Makefile
|
|
all: echo.bin
|
|
|
|
clean:
|
|
rm -f *.o *.bin *.lst *.hex
|
|
|
|
echo.bin: echo.o
|
|
ld65 -t none -vm -o $@ $<
|
|
echo.o: echo.s
|
|
ca65 -l $<
|
|
|