blob: 483395cefa6800a41b5d068308eb3984024b3bfd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
# libc/huge 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
|