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
|
# Disk images
|
||||||
include mk/disk.mk
|
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: FORCE
|
||||||
wireshark build/network.pcap
|
wireshark build/network.pcap
|
||||||
|
|
|
@ -42,10 +42,3 @@ else
|
||||||
VB_AUDIO="pulse"
|
VB_AUDIO="pulse"
|
||||||
VBM=VBoxManage
|
VBM=VBoxManage
|
||||||
endif
|
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