14 lines
129 B
Makefile
14 lines
129 B
Makefile
|
|
all:
|
|
(cd src ; make)
|
|
|
|
install:
|
|
(cd src ; make install)
|
|
|
|
uninstall:
|
|
(cd src ; make uninstall)
|
|
|
|
clean:
|
|
(cd src ; make clean)
|
|
|