Trending

#Makefile

Latest posts tagged with #Makefile on Bluesky

Latest Top
Trending

Posts tagged #Makefile

Original post on critters.gay

I remember someone mentioned using PHP as their static site generator and I was intrigued because PHP is an old and established way of doing "page templates" that it would be Cool to re-use instead of downloading a bespoke site generator tool

the problem is of course that php doesn't have any […]

0 2 0 0
Post image

Explored Makefile today — simple commands, cleaner workflow.
Loved how it automates tasks like build, run, and deploy with just a few lines.
Another small boost for managing ERP, eCommerce, and education projects more efficiently.

#Makefile #Automation #DeveloperWorkflow

1 0 0 0

It's time for #AdventOfCode! This year I'm using #C #neovim #makefile. I'm going to focus on performance, using #SIMD instructions where possible on a #RaspberryPi

0 0 0 0

God forbid makefile is on my top languages chart for github
#Makefile #Coding #Programming #Programmer #Types #TypeTheory #AlanTuring #Lambda #LambdaCalc

1 0 0 0
Post image

#DevOpsDays is our all-time favorite event series. we're thrilled to be attending philly's very own for the first time 🔔🏙️

there's been so much to learn about security, #agents, platform eng, #o11y...

Benjie will be speaking about the beauty of the #Makefile

let's connect 👋

0 0 0 0
Original post on fosstodon.org

I finally tried out a new cool feature of :gitannex: #gitAnnex: compute special remotes²!

Git annex is a ridiculously powerful git extension to manage large files. It remembers which file is stored on which remote. Compute special remotes now take this to another level by computing files on the […]

0 0 0 0
Preview
Hello World in Resizable Window (NEW) C++ demo program for resizing a window

Demonstrator for a resizable window using C++ and ncurses.

www.copus.io/work/c153156...

#c++ #programming #ncurses #makefile

0 0 1 0
Preview
ArcadeDB Convenience Makefile for Non-Java Developers ArcadeDB Convenience Makefile for Non-Java Developers - Makefile

For developers without a Java/Maven background and looking into contributing to @arcadedb.bsky.social , I made a #Makefile easing some common tasks:
gist.github.com/gramian/8cea842421c7fda1...

#OpenSource #Database #ArcadeDB

1 0 0 0
Preview
Retrieving NVIDIA graphics card data via available APIs UI on base of ncurses for presenting NVIDIA graphic card data

I have completed work on my analysis tool for graphics cards for the time being.

www.copus.io/work/27e044e...

#graphiccard #makefile #c++ #programming #gpu #nvidia #analysis #driver #api #nvml

0 0 2 0
在win10上用ndk25b编译libwebsockets-3.0 Android静态库 - 可可西 - 博客园 libwebsockets-3.0(github)代码库:https://github.com/EpicGames/ThirdParty/tree/master/libwebsockets-3.0 ndk25b:https://dl.google.com/android/repository/and

在win10上用ndk25b编译libwebsockets-3.0 Android静态库 - 可可西 libwebsockets-3.0(github)代码库:github.com/EpicGames/ThirdParty/tre... ndk25b:http...

#makefile #android

Origin | Interest | Match

0 0 0 0

anyway. Put this in a #makefile. i call my target "sniff".
`rg -i "\\) =>" -g '*.cs' -g '!Program.cs'; test $$? -eq 1`

#dotnet shouldn't have shipped with anonymous functions if they weren't ready. in my opinion.

0 0 0 0
Task A fast, cross-platform build tool inspired by Make, designed for modern workflows.

Un outil de *build* qui se veut être le successeur spirituel de Make.

🔗 https://taskfile.dev/

#build #Makefile

0 0 0 0
A screenshot of a Makefile, with the following contents:

PANDOC_OPTIONS=\
	-H templates/head.html \
	-A templates/footer.html \
	--template=templates/default.html

src := $(wildcard src/*/*.md)
html := $(patsubst src/%.md,site/%.html,$(src))

.PHONY: build deploy
build: $(html)

site/%.html: src/%.md
	pandoc -s -o $@ $< $(PANDOC_OPTIONS)

A screenshot of a Makefile, with the following contents: PANDOC_OPTIONS=\ -H templates/head.html \ -A templates/footer.html \ --template=templates/default.html src := $(wildcard src/*/*.md) html := $(patsubst src/%.md,site/%.html,$(src)) .PHONY: build deploy build: $(html) site/%.html: src/%.md pandoc -s -o $@ $< $(PANDOC_OPTIONS)

I just made myself a static site generator using a very small Makefile... haven't written one of those for quite a while!

#Makefile #pandoc

0 0 0 0
Original post on teh.entar.net

I kind of irrationally #CodeGolf my #Makefile rules, but sometimes I sit down to straighten out something awkward that bugged me for years, and get kind of mad when I seem to have been the first to actually treat `make` like the tool it is instead of as a broken shell script runner.

This time […]

0 0 0 0
Original post on mastodon.online

I came across Daniel's article on how to test your code across multiple Python versions using uv, it's a great read: daniel.feldroy.com/posts/2025-07-uv-run-for...

One thing that jumped out to me is that uv would have to swap Python versions in-and-out in the venv […]

0 0 0 0
Introduction - Just Programmer's Manual

Has anyone ever used `just` instead of `make` as a task runner for a project? If so, how did it work for you? Any feedback?

just.systems/man/en/

#just #make #justfile #makefile #taskrunner

0 0 1 0
Makefile Tutorial by Example Makefile Tutorial by Example

Apprendre la syntaxe et les possibilités offertes par Makefile.

🔗 https://makefiletutorial.com/

#Makefile #tuto

0 0 0 0
Preview
Usage | Task Running Taskfiles

I been looking at #taskfile and this is complex. 🤔 The command runner has so many abilities. And verbose too. 🫠

I don't think I'll use for myself, but I can see utility for shared tasks.

For me #justfile is enough. Not too complex. Has a #makefile syntax. And NOT #yaml. 😅

taskfile.dev/usage/

0 0 0 0

#TIL :

$(RM) in place of rm -f,
$(MKDIR_P) in place of mkdir -p,
$<,
$^,
and $@

#gamedev #Makefile

2 1 0 0

Curious how many people are using Makefiles in their go projects. I personally love this approach because of the power of Makefiles. However, I’m curious if there’s better, go-centric tools out there.

#golang #go #makefile

0 0 2 0
Post image

since '76, the #Makefile spec has made build workflows easy

don't build out your #CICD logic in your pipeline, treat it as a wrapper for your build/test/deploy steps. and your makefile can be your SSOT for local and remote workflows

#DevOps #devtools #testautomation

1 0 1 0
Preview
Announcing the new script-based build system We began exploring options to improve the build system for all our projects that was first established around 2021, starting from the Nitrocid KS project. We had initialized the Nitrocid PPA packaging in 2020, then improved it quite a bit in 2021 with a new repository, which is archived now as part of our efforts in 2023 to make use of the&hellip;

Announcing a simple, refined Makefile-based build system for .NET projects and more

#dotnet #csharp #programming #Makefile #TechNews #TechUpdates

0 0 0 0
Makefile - Conway's Game of Life - Part 6 - C and SDL2.
Makefile - Conway's Game of Life - Part 6 - C and SDL2. YouTube video by Programming Rainbow

Makefile - Conway's Game of Life - Part 6 - C and SDL2.

In this video we will talking about Makefiles. We will go through the Makefile for this project line by line to understand what it does.

#SDL2 #SDL #C #C11 #C99 #GameDev #Coding #Programming #GameOfLife #Makefile

youtu.be/4qTTNZbLcjw?...

8 3 1 0
Preview
Sudo make me a makefile OK, it’s been a year and a half of writing on this blog and I’ve successfully avoided posting anything about the latest zeitgeist in tech, namely AYYYYYYY EYYYYYYE.

In today's blog post I finally talk about AYYYY EYYYYYE. The post is twice as long as my normal post, buckle up!

blog.appliedcomputing.io/p/sudo-make-...

#llm #ai #makefile

2 1 0 0
Awakari App

Can not compile rtl8821CU wifi driver I just installed a new Ubuntu 22.04 system on my desktop. I...

stackoverflow.com/questions/79415282/can-n...

#ubuntu #gcc #makefile #ubuntu-22.04

Event Attributes

0 0 0 0
Scripting tools - A Node.js friendly alternative to makefile Scripting tools - A Node.js friendly solution to replace makefile

tduyng.com/blog/scripting-tools

#makefile #nodejs #scripting #shell #typescript

1 0 0 0