mirror of
https://github.com/jellyfin/jellyfin-server-macos.git
synced 2024-11-23 14:09:41 +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
|