Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
rapid7
GitHub Repository: rapid7/metasploit-framework
Path: blob/master/external/source/osx/x86/Makefile
19520 views
BINS=$(subst src/,,$(patsubst %.s,%.bin,$(wildcard src/s*.s)))

all: $(BINS)

%.bin: src/%.s
	nasm -Iinclude/ -f bin -o bin/$@ $<

test: all
	make -C src/test

clean:
	rm -f bin/*.bin; make -C src/test clean