Skip to content

Commit

Permalink
Added a Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
ereOn committed May 8, 2015
1 parent 3fa95d4 commit 661b7e1
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
PRODUCT_NAME:=freelan
PRODUCT_VERSION:=$(shell git describe)

default: install

install:
# Install the files to ${DESTDIR} (defaults to /)
scons install prefix=/

build:
scons all samples

package:
git archive HEAD --prefix=${PRODUCT_NAME}-${PRODUCT_VERSION}/ | gzip > ${PRODUCT_NAME}-${PRODUCT_VERSION}.tar.gz

0 comments on commit 661b7e1

Please sign in to comment.