mirror of
https://github.com/cc65/cc65.git
synced 2024-12-23 04:30:10 +00:00
remove conio.pce from the default target and print a message instead
This commit is contained in:
parent
cf1c0b6774
commit
94445cd16f
@ -42,14 +42,15 @@ else
|
||||
COUNT := 1
|
||||
endif
|
||||
|
||||
all: conio.pce
|
||||
all: conio.bin
|
||||
|
||||
%.bin: %.c
|
||||
$(CL) -t pce $< -Wl -D__CARTSIZE__=${CARTSIZE} -m $*.map -o $@
|
||||
@echo "use 'make conio.pce' to produce a .pce file using dd"
|
||||
|
||||
%.pce: %.bin
|
||||
dd if=$< bs=8K skip=${COUNT} > $@
|
||||
dd if=$< bs=8K count=${COUNT} >> $@
|
||||
|
||||
%.bin: %.c
|
||||
$(CL) -t pce $< -Wl -D__CARTSIZE__=${CARTSIZE} -m $*.map -o $@
|
||||
|
||||
clean:
|
||||
@$(DEL) conio.o conio.??? 2>$(NULLDEV)
|
||||
|
Loading…
Reference in New Issue
Block a user