Like the other projects, just force the bin/ directory to exist.
Chris Pressey
4 years ago
0 | |
bin/
|
|
0 |
bin/stringie
|
1 | 1 |
*.o
|
|
0 |
This directory is where compiled executables will be placed.
|
6 | 6 |
;
|
7 | 7 |
; or you can simply type the following commands into the shell:
|
8 | 8 |
;
|
9 | |
makedir bin
|
10 | 9 |
dcc src/stringie.c -o bin/stringie
|
28 | 28 |
all: ${PROG}${EXE}
|
29 | 29 |
|
30 | 30 |
${PROG}${EXE}: $(OBJS)
|
31 | |
mkdir -p ../bin/
|
32 | 31 |
$(CC) $(OBJS) -o ${PROG} $(LIBS)
|
33 | 32 |
|
34 | 33 |
stringie${O}: stringie.c
|