mirror of
https://github.com/vivier/EMILE.git
synced 2024-12-22 10:29:31 +00:00
17 lines
194 B
Makefile
17 lines
194 B
Makefile
#
|
|
#
|
|
# (c) 2004 Laurent Vivier <LaurentVivier@wanadoo.fr>
|
|
#
|
|
#
|
|
|
|
all: first
|
|
|
|
first: first.o
|
|
$(OBJCOPY) -O binary first.o first
|
|
|
|
first.o: first.S
|
|
$(AS) -o first.o first.S
|
|
|
|
clean:
|
|
rm -f first *.o
|