1
0
mirror of https://github.com/rricharz/Tek4010.git synced 2026-05-04 07:00:24 +00:00

Update makefile

This commit is contained in:
Stefan
2024-05-28 11:25:27 +02:00
committed by GitHub
parent e52a149674
commit 8f35024011

View File

@@ -6,13 +6,13 @@ all: tek4010
tek4010: src/help.txt src/main.c src/main.h src/tube.c src/tube.h src/tek4010.c src/ards.c
sed 's/\"/\\\"/g; s/$$/\\n"/; s/^/"/; 1s/^/const char *helpStr =\n/; $$a;' src/help.txt > src/help.h
$(CC) -o tek4010 src/main.c src/tube.c src/tek4010.c src/ards.c $(LIBS) $(CFLAGS)
$(CC) -o $@ src/main.c src/tube.c src/tek4010.c src/ards.c $(LIBS) $(CFLAGS)
tek4010.1: tek4010
help2man --output=$@ --name="Tektronix 4010 and 4014 storage tube terminal emulator" --no-info $?
man: tek4010
help2man --output=$?.1 --name="Tektronix 4010 and 4014 storage tube terminal emulator" --no-info $?
install: tek4010
./install
clean: tek4010
clean:
-rm -f tek4010