Make all at top of makefile
This commit is contained in:
parent
e111e173cf
commit
ddcdba3acc
9
Makefile
9
Makefile
|
@ -48,6 +48,13 @@ include mk/filesystem.mk
|
|||
# Disk images
|
||||
include mk/disk.mk
|
||||
|
||||
# Misc
|
||||
# An empty target
|
||||
FORCE:
|
||||
|
||||
# A method of creating a listing for any binary
|
||||
%.list: %
|
||||
objdump -C -M intel -D $< > $@
|
||||
|
||||
# Wireshark
|
||||
wireshark: FORCE
|
||||
wireshark build/network.pcap
|
||||
|
|
|
@ -42,10 +42,3 @@ else
|
|||
VB_AUDIO="pulse"
|
||||
VBM=VBoxManage
|
||||
endif
|
||||
|
||||
# An empty target
|
||||
FORCE:
|
||||
|
||||
# A method of creating a listing for any binary
|
||||
%.list: %
|
||||
objdump -C -M intel -D $< > $@
|
||||
|
|
Loading…
Reference in a new issue