mirror of
https://github.com/syncthing/syncthing-macos.git
synced 2026-05-17 12:00:37 +00:00
10 lines
336 B
Makefile
10 lines
336 B
Makefile
all: debug
|
|
debug:
|
|
xcodebuild -derivedDataPath $(PWD) -configuration Debug -scheme syncthing
|
|
release:
|
|
xcodebuild -derivedDataPath $(PWD) -configuration Release -scheme syncthing
|
|
release-dmg:
|
|
xcodebuild -derivedDataPath $(PWD) -configuration Release -scheme syncthing-dmg
|
|
clean:
|
|
rm -Rf Build Index Logs ModuleCache.noindex info.plist
|