Skip to content

Commit

Permalink
deprecate igawk in favor of gawk
Browse files Browse the repository at this point in the history
  • Loading branch information
soimort committed Aug 17, 2014
1 parent 0ae04cc commit 8035a44
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Makefile
Expand Up @@ -11,10 +11,10 @@ INSTDIR = /usr/bin
default: build

clean:
@igawk -f build.awk clean
@gawk -f build.awk clean

$(COMMAND):
@igawk -f build.awk build -target=$(TARGET)
@gawk -f build.awk build -target=$(TARGET)

build: $(COMMAND)

Expand Down
6 changes: 3 additions & 3 deletions build.awk
@@ -1,7 +1,7 @@
#!/usr/bin/igawk -f
#!/usr/bin/gawk -f

@include include/Commons.awk
@include metainfo.awk
@include "include/Commons"
@include "metainfo"

function init() {
BuildPath = "build/"
Expand Down

0 comments on commit 8035a44

Please sign in to comment.