1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-28 19:29:53 +00:00

Removed obsolete Makefiles.

This commit is contained in:
Oliver Schmidt 2013-04-27 17:47:20 +02:00
parent f2f3c8addf
commit b5a735a58e
2 changed files with 0 additions and 68 deletions

View File

@ -1,27 +0,0 @@
#
# gcc Makefile for the program sources
#
PROGS = \
ar65 \
ca65 \
cc65 \
chrcvt \
cl65 \
co65 \
da65 \
grc65 \
ld65 \
od65 \
sp65
SUBDIRS = common $(PROGS)
.PHONY: all dist clean zap $(SUBDIRS)
all dist clean zap: $(SUBDIRS)
# Finish building the common library before allowing parallel makes.
$(PROGS): common
$(SUBDIRS):
$(MAKE) -C $@ -f make/gcc.mak $(MAKECMDGOALS)

View File

@ -1,41 +0,0 @@
#
# Watcom Makefile for the cc65 binutils
#
SUBDIRS = \
common \
ar65 \
ca65 \
cc65 \
cl65 \
co65 \
da65 \
grc65 \
ld65 \
od65 \
sp65
all: win32
win32:
for i in $(SUBDIRS); do $(MAKE) TARGET=NT -C $${i} -f make/watcom.mak; done
dos32:
for i in $(SUBDIRS); do $(MAKE) TARGET=DOS32 -C $${i} -f make/watcom.mak; done
os2:
for i in $(SUBDIRS); do $(MAKE) TARGET=OS2 -C $${i} -f make/watcom.mak; done
clean:
for i in $(SUBDIRS); do $(MAKE) -C $${i} -f make/watcom.mak clean; done
zap:
for i in $(SUBDIRS); do $(MAKE) -C $${i} -f make/watcom.mak zap; done
strip:
for i in $(SUBDIRS); do $(MAKE) -C $${i} -f make/watcom.mak strip; done