Make all at top of makefile

This commit is contained in:
Jeremy Soller 2017-01-09 21:54:38 -07:00
parent e111e173cf
commit ddcdba3acc
2 changed files with 8 additions and 8 deletions

View file

@ -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

View file

@ -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 $< > $@