Этот коммит содержится в:
tonton Th 2020-05-09 21:44:10 +02:00
родитель 94aecb1155
Коммит ee00eec000
5 изменённых файлов: 19 добавлений и 17 удалений

Просмотреть файл

@ -11,7 +11,6 @@
CC = gcc
OPT = -Wall -g -DDEBUG_LEVEL=0 -DMUST_ABORT
CC = gcc
libbubulles.a: bubulles.o
ar r $@ $?
@ -19,6 +18,7 @@ libbubulles.a: bubulles.o
bubulles.o: bubulles.c bubulles.h Makefile
$(CC) $(OPT) -c $<
# ------------------------------------------------
# --- build some tests and tools
tbb: tbb.c bubulles.h bubulles.o Makefile

8
README.md Обычный файл
Просмотреть файл

@ -0,0 +1,8 @@
# | lib bubulles |
Looking at the Makefile is a good idea.
for compiling on FreeBSD : $ gmake CC=clang tbb
Stay tuned, film at 11.

Просмотреть файл

@ -1,14 +0,0 @@
+-------------------------+
| lib bubulles |
+-------------------------+
/!\ warnings /!\
* This kludge was mainly build on FreeBSD, so ymmv.
* But you have to use GNU make, iirc...
* Looking at the Makefile is a good idea.
* for compiling on FreeBSD :
$ gmake CC=clang tbb

Просмотреть файл

@ -4,7 +4,7 @@
/* --------------------------------------------------------------------- */
#define LIBBB_VERSION 51
#define LIBBB_VERSION 52
#define SZ_BUBULLE_TEXT 51 /* arbitrary value */
@ -60,8 +60,9 @@ void bubulles_sizeof(int k);
Bubulle * bubulle_getaddr(BBList *where, int idx);
/*
* export functions
* export functions for everything
*/
/* TO BE DONE XXX */
/*
* export Awk machinable.

7
install.sh Исполняемый файл
Просмотреть файл

@ -0,0 +1,7 @@
#!/bin/bash
ID="/usr/local"
cp bubulles.h $ID/include/
cp libbubulles.a $ID/lib/