Skip to content

Commit

Permalink
Merge pull request #7 from warp10/upstream
Browse files Browse the repository at this point in the history
Upstream
  • Loading branch information
teopost committed Sep 13, 2014
2 parents a0c66e4 + e6eedb5 commit f551e2b
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
16 changes: 15 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
# This file is free software, and is released under the terms of the WTFPL, as
# described here: http://www.wtfpl.net/txt/copying/

SHELL = /bin/bash

RELEASE = 5.0.1

CC = gcc
CFLAGS = -g -Wall
LIBS = -lncurses
Expand All @@ -29,5 +33,15 @@ install:

clean:
$(RM) $(TARGET)
$(RM) -rf .release-tmp

release: clean
mkdir -p .release-tmp/$(TARGET)-$(RELEASE)/
cp -rv * .release-tmp/$(TARGET)-$(RELEASE)
rm -rf .release-tmp/$(TARGET)-$(RELEASE)/debian
rm -f .release-tmp/$(TARGET)-$(RELEASE)/qmenu.{cfg,frm,gif,hlp}
rm -f .release-tmp/$(TARGET)-$(RELEASE)/README_it.md
tar czf $(TARGET)-$(RELEASE).tar.gz -C .release-tmp $(TARGET)-$(RELEASE)
rm -rf .release-tmp

.PHONY: build install clean
.PHONY: build install clean release
2 changes: 1 addition & 1 deletion qmenu.c
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,7 @@ int main (int argc, char **argv)
errorlvl = loadmenu (imenu[ipmenu]);
break;
case 8:
win (" INFORMATIONS ", 2, 2, 18, 78);
win (" INFORMATION ", 2, 2, 18, 78);
move (4, 3);
printw (" %s ", VERSION);
move (6, 3);
Expand Down

0 comments on commit f551e2b

Please sign in to comment.