Skip to content

Commit c381a25

Browse files
committed
fixed install target
1 parent 51c48ca commit c381a25

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Makefile

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# clang on OSX
2-
CC = clang
3-
CFLAGS = -O2 -Wall -Wextra -std=c89
2+
#CC = clang
3+
#CFLAGS = -O2 -Wall -Wextra -std=c89
44

55
# gcc on Linux
6-
#CC = gcc
7-
#CFLAGS = -O2 -Wall -std=c89 -DTERMIOS
6+
CC = gcc
7+
CFLAGS = -O2 -Wall -std=c89 -DTERMIOS
88

99
# Mark Williams C on COHERENT
1010
#CC = cc
@@ -16,7 +16,7 @@ s: s.o address.o adjust.o Bman.o buffer.o commands.o \
1616

1717
install:
1818
strip s
19-
cp s $HOME/bin
19+
cp s ${HOME}/bin
2020

2121
clean:
2222
rm -f *.o s

0 commit comments

Comments
 (0)