create project structure

This commit is contained in:
2024-11-23 18:47:32 +03:00
parent 75f3e942e6
commit 15c07a898b
13 changed files with 221 additions and 0 deletions

23
libmysyslog/Makefile Normal file
View File

@@ -0,0 +1,23 @@
CC = gcc
CFLAGS = -Wall -g -fPIC
LDFLAGS =
LIBRARY = libmysyslog.a
OBJ = src/mysyslog.o
all: $(LIBRARY)
$(LIBRARY): $(OBJ)
ar rcs $@ $^
clean:
rm -f $(OBJ) $(LIBRARY)
deb:
# Deb package building logic
install: $(LIBRARY)
cp $(LIBRARY) /usr/local/lib
ldconfig
.PHONY: all clean deb install

View File

@@ -0,0 +1,12 @@
Source: libmysyslog
Section: libs
Priority: optional
Maintainer: GandC Snow admin@gandc.ru
Build-Depends: debhelper (>= 9)
Standards-Version: 3.9.6
Homepage: https://git.gandc.ru/mysyslog/libmysyslog
Package: libmysyslog
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Core library for the MySyslog logging system

4
libmysyslog/debian/rules Normal file
View File

@@ -0,0 +1,4 @@
#!/usr/bin/make -f
%:
dh $@