Skip to content

Commit

Permalink
Added binary deb build instructions to README
Browse files Browse the repository at this point in the history
  • Loading branch information
loshprung committed Dec 24, 2022
1 parent 01cd79d commit fefdaea
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
7 changes: 7 additions & 0 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,10 @@ $ ./configure
$ make

The resulting binary will be created in src/

-- Creating binary deb package --

Rename working directory to PACKAGE-VERSION: something like "simple-snake-0.1"

$ debmake -e EMAIL -f FULLNAME
$ dpkg-buildpackage -b
2 changes: 2 additions & 0 deletions src/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
EXTRA_DIST = include

bin_PROGRAMS = simple-snake
simple_snake_SOURCES = body.c draw.c
simple_snake_LDADD = -lncurses -lm
1 change: 1 addition & 0 deletions src/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,7 @@ target_alias = @target_alias@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
EXTRA_DIST = include
simple_snake_SOURCES = body.c draw.c
simple_snake_LDADD = -lncurses -lm
all: all-am
Expand Down

0 comments on commit fefdaea

Please sign in to comment.