Первый тестовый коммит: вырисовывается структура проекта
This commit is contained in:
parent
57c53b1ad3
commit
aafca4020c
6 changed files with 42 additions and 0 deletions
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
*.o
|
||||||
|
*.a
|
||||||
|
*.so
|
||||||
|
*.exe
|
5
AUTHORS
Normal file
5
AUTHORS
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
Egor Baranovsky (egorgeek)
|
||||||
|
baranovsky.egorka@yandex.ru
|
||||||
|
|
||||||
|
Denis Butorin (dekabu)
|
||||||
|
dyonya0.0@gmail.com
|
29
Makefile
Normal file
29
Makefile
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
PREFIX = /usr
|
||||||
|
HEADERSDIR = $(PREFIX)/include/glazir
|
||||||
|
LIBDIR = $(PREFIX)/lib64
|
||||||
|
|
||||||
|
HEADERS = src/pie.h \
|
||||||
|
src/version.h
|
||||||
|
|
||||||
|
OBJ = src/main.o
|
||||||
|
|
||||||
|
libglazir.a: $(OBJ)
|
||||||
|
ar rcs libglazir.a $(OBJ)
|
||||||
|
|
||||||
|
install/headers:
|
||||||
|
mkdir -p $(HEADERSDIR)
|
||||||
|
cp $(HEADERS) $(HEADERSDIR)
|
||||||
|
|
||||||
|
install/static: libglazir.a
|
||||||
|
mkdir -p $(LIBDIR)
|
||||||
|
cp libglazir.a $(LIBDIR)
|
||||||
|
|
||||||
|
install: install/headers install/static
|
||||||
|
|
||||||
|
uninstall/headers:
|
||||||
|
rm -r $(HEADERSDIR)
|
||||||
|
|
||||||
|
uninstall/static:
|
||||||
|
rm $(LIBDIR)/libglazir.a
|
||||||
|
|
||||||
|
uninstall: uninstall/headers uninstall/static
|
0
src/main.c
Normal file
0
src/main.c
Normal file
1
src/pie.h
Normal file
1
src/pie.h
Normal file
|
@ -0,0 +1 @@
|
||||||
|
#include "version.h"
|
3
src/version.h
Normal file
3
src/version.h
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
#define PIE_VERSION_MAJOR 0
|
||||||
|
#define PIE_VERSION_MINOR 1
|
||||||
|
#define PIE_VERSION_PATCH 0
|
Loading…
Add table
Add a link
Reference in a new issue