-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
28 lines (19 loc) · 927 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
ALL=print_al_font
CFLAGS+= -Wall -Wpedantic -ggdb -std=c99
print_al_font: print_al_font.c
$(CC) $(CFLAGS) -o print_al_font print_al_font.c
download_bravox_fonts:
mkdir -p Fonts
cd Fonts && wget -c -r -nd -R "*.html*" -r "*.pdf*" https://xeroxparcarchive.computerhistory.org/indigo/bravox/fonts/.index.html; echo $?
download_altofonts_original:
mkdir -p Fonts
cd Fonts && wget -c -r -nd -R "*.html*" -r "*.pdf*" https://xeroxparcarchive.computerhistory.org/indigo/altofonts/original/.index.html; echo $?
download_altofonts_eighbits:
mkdir -p Fonts
cd Fonts && wget -c -r -nd -R "*.html*" -r "*.pdf*" https://xeroxparcarchive.computerhistory.org/indigo/altofonts/eightbit/.index.html; echo $?
download_smalltalk_76:
mkdir -p Smalltalk-76
cd Smalltalk-76 && wget -c -r -nd -R "*.html*" -r "*.pdf*" https://xeroxalto.computerhistory.org/Filene/Smalltalk-76/.index.html; echo $?
.PHONY: clean
clean:
rm -f $(ALL)