From bd09c6fe25d1da10147f5770927b50c012606882 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Ortega=20Froysa?= Date: Tue, 3 Oct 2017 17:09:18 +0200 Subject: [PATCH] Created Makefile for demo. --- .gitignore | 1 + demo/Makefile | 26 ++++++++++++++++++++++++++ demo/main.c | 5 ++++- 3 files changed, 31 insertions(+), 1 deletion(-) create mode 100644 demo/Makefile diff --git a/.gitignore b/.gitignore index e54565b..07f6811 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ # Ignore builds build/* !build/.keep +demo/bin/* # Ignore documentation doc/* diff --git a/demo/Makefile b/demo/Makefile new file mode 100644 index 0000000..9c1a07a --- /dev/null +++ b/demo/Makefile @@ -0,0 +1,26 @@ +# Copyright (C) 2017 Ortega Froysa, Nicolás +# Author: Ortega Froysa, Nicolás +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + +CC=gcc +CFLAGS=-I../include/ -L../build/ -lneocomm +BIN=bin/demo + +demo: + mkdir -p bin/ + $(CC) -o $(BIN) main.c $(CFLAGS) + +clean: + rm -f $(BIN) diff --git a/demo/main.c b/demo/main.c index 464832c..19ecb31 100644 --- a/demo/main.c +++ b/demo/main.c @@ -6,5 +6,8 @@ * @date 09/25/17 */ -#include +#include +int main() { + return 0; +}