1CXX_SOURCES := main.cpp 2 3EXE := AttachDenied 4 5all: AttachDenied sign 6 7include Makefile.rules 8 9sign: entitlements.plist AttachDenied 10ifeq ($(OS),Darwin) 11 codesign -s - -f --entitlements $^ 12endif 13
1CXX_SOURCES := main.cpp 2 3EXE := AttachDenied 4 5all: AttachDenied sign 6 7include Makefile.rules 8 9sign: entitlements.plist AttachDenied 10ifeq ($(OS),Darwin) 11 codesign -s - -f --entitlements $^ 12endif 13