projects
/
idea
/
community.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
move application.kt from util-ex to platform-impl and mark it as obsolete - we don...
[idea/community.git]
/
native
/
fsNotifier
/
linux
/
make.sh
1
#!/bin/sh
2
3
VER=$(date "+%Y%m%d.%H%M")
4
sed -i.bak "s/#define VERSION .*/#define VERSION \"${VER}\"/" fsnotifier.h && rm fsnotifier.h.bak
5
6
${CC:-clang} -O2 -Wall -Wextra -Wpedantic -std=c11 -o fsnotifier main.c inotify.c util.c && \
7
chmod 755 fsnotifier