/[osn-commons]/trunk/utils/Makefile
ViewVC logotype

Contents of /trunk/utils/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 69 - (show annotations)
Sun Feb 16 17:51:44 2025 UTC (6 weeks, 1 day ago) by rakinar2
File size: 217 byte(s)
feat(utils): tmpcat program

This program allows you to create a temporary file and open your editor
to edit it. Then once you exit out of the editor, it will echo the data
in the file to stdout, which can then be piped to another process or used
in other ways.

1 CC = gcc
2 CFLAGS = -Wall -Wextra -Werror -std=c23 -pedantic -g -O2 -DHAVE_CONFIG_H -I. -I.. -D_POSIX_C_SOURCE=200112L -D_GNU_SOURCE
3 BINS = tmpcat
4
5 all: utils
6 utils: $(BINS)
7
8 tmpcat: tmpcat.o
9
10 clean:
11 rm -f *.o $(BINS)

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26