Parent Directory
|
Revision Log
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 |