diff options
| author | 2014-07-30 00:36:44 +0200 | |
|---|---|---|
| committer | 2014-07-30 01:11:09 +0200 | |
| commit | efa9036180df32ad26093fa333c8bdf3baf8ab1a (patch) | |
| tree | 067bdbe0a5f5ca70f201a1c071721c715b902fde /makefile | |
| parent | ff317aee140197e7c52f2f3f4db154d715503d19 (diff) | |
| download | xkbcat-efa9036180df32ad26093fa333c8bdf3baf8ab1a.tar.gz xkbcat-efa9036180df32ad26093fa333c8bdf3baf8ab1a.zip | |
Convert `compile` script to makefile
More standard this way.
Diffstat (limited to 'makefile')
| -rw-r--r-- | makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/makefile b/makefile new file mode 100644 index 0000000..765f99e --- /dev/null +++ b/makefile @@ -0,0 +1,7 @@ +xkbcat: xkbcat.c + clang -O3 --std=gnu11 -pedantic -Wall -lX11 -o xkbcat xkbcat.c +clean: + rm xkbcat +.PHONY: xkbcat + + |
