first stable version

This commit is contained in:
solusipse
2013-09-06 04:01:55 +02:00
parent bcbc279196
commit 829c8e16d8
4 changed files with 379 additions and 0 deletions

15
Makefile Normal file
View File

@@ -0,0 +1,15 @@
# -----------------------------------
# Fiche MAKEFILE
# https://github.com/solusipse/fiche
# solusipse.net
# -----------------------------------
CC=gcc
CFLAGS=-pthread -O2
prefix=/usr/local
all: fiche.c
$(CC) -o fiche $(CFLAGS) fiche.c
install: fiche
install -m 0755 fiche $(prefix)/bin