diff options
author | Cem Keylan <cem@ckyln.com> | 2021-08-30 11:30:48 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2021-08-30 11:30:48 +0300 |
commit | 718d8642f46293da5d182e631d717428c3d6e7e5 (patch) | |
tree | b82ae9b191569214e3b7acae1a2b2f275623d3ca /extra/samurai/files | |
parent | c6b37618f5edb567d307a95a07da2a042bc17f02 (diff) | |
download | repository-718d8642f46293da5d182e631d717428c3d6e7e5.tar.gz |
samurai: move to core
Diffstat (limited to 'extra/samurai/files')
-rw-r--r-- | extra/samurai/files/ninja.in | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/extra/samurai/files/ninja.in b/extra/samurai/files/ninja.in deleted file mode 100644 index c648e47c..00000000 --- a/extra/samurai/files/ninja.in +++ /dev/null @@ -1,33 +0,0 @@ -rule cc - command = $cc $cflags -c -o $out $in - description = Compiling C object $out -rule link - command = $cc $ldflags -o $out $in - description = Linking $out -rule custom - command = $COMMAND - description = $DESC - -build build.o: cc build.c -build deps.o: cc deps.c -build env.o: cc env.c -build graph.o: cc graph.c -build htab.o: cc htab.c -build log.o: cc log.c -build parse.o: cc parse.c -build samu.o: cc samu.c -build scan.o: cc scan.c -build tool.o: cc tool.c -build tree.o: cc tree.c -build util.o: cc util.c -build samu: link build.o deps.o env.o graph.o htab.o log.o parse.o samu.o scan.o tool.o tree.o util.o -build install: phony bin-install man-install -build PHONY: phony -build bin-install: custom PHONY samu - COMMAND = clinst -Dm755 samu $destdir/usr/bin/samu - DESC = Installing samu -build man-install: custom PHONY - COMMAND = clman -d $destdir samu.1 - DESC = Installing manual page samu.1 - -default samu |