APUE Learning Example Source Code
guowenxue
2018-12-20 bc9d93b549ceb23615cf8ebd6773b1cf207cbe68
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 
all:
    @echo "Start compile library..."
    make -C src
    @echo "Start compile test program..."
    make -C test
 
run:
    @echo "Start run test program..."
    make run -C test
 
clean:
    make clean -C src
    make clean -C test
 
distclean: clean
    rm -f lib/*.a
    rm -f lib/*.so