summaryrefslogtreecommitdiff
path: root/Makefile (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Update to latest project skeleton: i18n and fine-grained fuzzingHEADmainEuAndreh2025-05-291-21/+53
|
* Make: Use $< over $?EuAndreh2025-05-041-1/+1
|
* Implement most of db layerEuAndreh2025-01-171-1/+1
| | | | | Many missing implementations or tests are marked with FIXME so I don't loose track of holes in the code.
* src/papod.go: Integrate db layer with network, create command handlers, ↵EuAndreh2024-11-041-3/+3
| | | | simplify network loop
* Makefile: Prioritize local version when building and linkingEuAndreh2024-10-291-2/+2
|
* Big bundle commit: adjust build project skeleton; include uncommitted codeEuAndreh2024-10-261-55/+61
| | | | | | | | | | | | | | | There was some code that was being slowly tweaked as I'd work or related things on other repositories that wasn't committed step by step, and that now I'd rather include all as a single changeset, single there weren't really separated stages on how it was developed. Other than that, this commit includes adjustments on dependencies API usage, as they changed during my work on them, and adjustments on the build and test system, as I improved how they worked also during work on other projects. As of this commit, the code compiles and the tests pass. I can't recall if this was true before this commit, but it is true now.
* Makefile: "var version" -> "const Version"EuAndreh2024-09-291-1/+1
|
* Normalize structure like other golang projectsEuAndreh2024-09-271-15/+2
|
* Makefile: Define $(GOCFLAGS) and $(GOLDFLAGS) based on $(PREFIX)EuAndreh2024-08-151-0/+2
|
* Add src/version.goEuAndreh2024-08-151-4/+11
|
* Use "go tool" to build projectEuAndreh2024-08-141-17/+50
|
* Makefile: Reorder CLI args to go(1)EuAndreh2024-07-261-2/+2
|
* Tweak indentationEuAndreh2024-07-171-3/+4
|
* src/lib.go: Start writing messages to DBEuAndreh2024-05-271-2/+2
| | | | | Create and test simple code for handling migrations transactionally as files.
* Makefile: Add missing $(GOFLAGS) for a correct static build of go-sqlite3EuAndreh2024-05-231-2/+3
|
* Rename leftover references of "papo" -> "papod"EuAndreh2024-05-231-7/+8
|
* Makefile: Fix installation of files under $(DATADIR)EuAndreh2024-05-161-19/+14
|
* Rename source files to "lib.go" and "main.go"EuAndreh2024-05-161-9/+9
|
* Rename from "papo" to "papod"EuAndreh2024-05-061-1/+1
|
* Makefile: Normalize alongside other Go projectsEuAndreh2024-04-181-24/+17
|
* Makefile: add binder instance for port 6667EuAndreh2024-03-301-4/+7
|
* Makefile: rm both socket filesEuAndreh2024-03-291-2/+2
|
* Makefile: Reorder commands so we don't need to sleepEuAndreh2024-03-291-2/+1
|
* Makefile: s/main.bin/$(NAME).bin/gEuAndreh2024-03-281-4/+4
|
* Makefile: s/ircd/papo/gEuAndreh2024-03-281-5/+5
|
* Makefile: Adapt "run-*" virtual targetsEuAndreh2024-03-281-8/+12
|
* Adapt build and installationEuAndreh2024-03-281-30/+17
|
* Node.js -> GoEuAndreh2024-03-251-31/+25
|
* tests/rand.mjs: Add MersenneTwister random number generatorEuAndreh2024-03-201-2/+12
| | | | | | The `tests/rand.c` is also added: a simplified adaptation of the original algorithm implementation in C. A 10k numbers test case shows that the JavaScript version behaves the same that the C one does.
* Makefile: Use TCP port 6001EuAndreh2024-03-141-1/+1
|
* Makefile: Add "run-binder" to expose lighttpd's unix socket to a TCP portEuAndreh2024-03-141-1/+7
|
* src/hero.mjs: Add rmIf() and mkfifo()EuAndreh2024-03-061-12/+7
|
* Makefile: Let the application recreate its pipes and socketsEuAndreh2024-03-011-1/+1
|
* Setup user-level lighttpd reverse proxy for development and testingEuAndreh2024-03-011-1/+5
| | | | Add static files as in production, too.
* src/ircd.mjs: Remove unix socket before recreating itEuAndreh2024-03-011-1/+0
|
* Normalize how modules import and name each otherEuAndreh2024-02-241-2/+9
| | | | | Also add a `defaultInterceptors` variable in `src/hero.mjs` to avoid needing to redefine it in every application.
* Implement accretion.runMigrations() and wrappings of node-sqlite3EuAndreh2024-02-231-0/+1
|
* Big cleanupEuAndreh2024-02-231-48/+14
| | | | | | - delete all SQLite Node-API code: we'll use the C++ one instead; - implement hero.mjs, with tests! - use ESM all over.
* Remove C code and cleanup repositoryEuAndreh2024-02-211-131/+21
|
* Makefile: Include SQL migration files as installable artifactsEuAndreh2023-11-271-1/+12
|
* Makefile: Also recompile `src/napi-sqlite.lo` when Makefile changesEuAndreh2023-11-271-0/+1
|
* Makefile: Fix missing installation of the `napi-sqlite.{c,node}` source and ↵EuAndreh2023-11-271-1/+2
| | | | executable
* Makefile: Fix missing installation of the `src/cli` executableEuAndreh2023-11-271-1/+1
| | | | | The `$PREFIX/bin/papo` was being installed as a symlink, but the target was empty.
* Makefile: Erase $(JSLIBDIR) together with $(SRCDIR)EuAndreh2023-11-251-1/+1
|
* Makefile: Compose $(CFLAGS.a) with $(CFLAGS) instead of combineEuAndreh2023-11-251-11/+8
| | | | | | | | | | | | | | | | | | | | | | | Instead of defining a toplevel $(CFLAGS.a) that includes everything from $(CFLAGS) plus whatever is statically defined in the Makefile, we now use both $(CFLAGS) and $(CFLAGS.a) together, and we define neither. Now one can keep a single usage of $(CFLAGS), and override $(CFLAGS.a) when desired. Where previously, in order to give a flag only to $(CFLAGS.a), one had to write: $ make CFLAGS.a="$CFLAGS --.a-only" Now can be done via: $ make CFLAGS.a="--.a-only" IOW, previously $(CFLAGS.so) was "everything you gave to $(CFLAGS), plus this extra -fPIC" what now is "override $(CFLAGS), $(CFLAGS.a) or $(CFLAGS.so) as you wish". The same is true for $(LDLIBS), $(LDLIBS.a) and $(LDLIBS.so).
* Add WIP non-async functions to napi-sqlite.cEuAndreh2023-11-161-1/+1
|
* Makefile, mkdeps.sh: Enforce JS->native dependencyEuAndreh2023-11-151-0/+1
| | | | | Assert that we'll always have the `src/napi-sqlite.node` binary ready by the time we get to any JavaScript file.
* mv src/cli src/cli.jsEuAndreh2023-11-151-3/+4
|
* Add support for multi-file C projectEuAndreh2023-11-151-29/+116
| | | | | | - have dynamic discovered dependencies via `mkdeps.hs`, and also move the listing of JavaScript files to it. - copy over stub C files for setting up the project skeleton.
* src/napi-sqlite.c: Add Node-API PoCEuAndreh2023-11-131-2/+12
|