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/isight/Makefile
Views: 11780
CC=gcc
LDFLAGS=-bundle -framework Cocoa -framework CoreAudioKit -framework Foundation -framework QuartzCore -framework QuickTime -framework QuartzCore
OBJECTS=CSGCamera.o CSGImage.o main.o

BUNDLE=isight.bundle

$(BUNDLE): $(OBJECTS)
	$(CC) $(CFLAGS) -o $(BUNDLE) $(OBJECTS) $(LDFLAGS)

clean:
	rm -f *.o isight.bundle