blob: 2ab3b9d119f05e93505d3fbde9a2369b3016a4ef (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
# libc/medium Makefile
all:
$(MAKE) -C ../mcs51 all
cp ../mcs51/*.rel .
touch dummy.rel
clean:
rm -f *.rel *.sym *.lst *.asm *~ *.lib
distclean: clean
rm -f Makefile
|