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