CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/external/source/osx/x86/Makefile
Views: 11780
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