APUE Learning Example Source Code
guowenxue
2019-06-26 157be0b0d4c7d4809cfcafc76235cc18388378c8
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