Commit 9a47ed82 by devttys0

Re-structured the makefile heirarchy.

parent d69347e6
export CC=@CC@
export CFLAGS=@CFLAGS@
export SONAME=@SONAME@
export SOEXT=@SOEXT@
export prefix=@prefix@
export exec_prefix=@exec_prefix@
export LIBDIR=@libdir@
export INSTALL_OPTIONS=@INSTALL_OPTIONS@
PYTHON=python PYTHON=python
SRC_C_DIR="./src/C" SRC_C_DIR="./src/C"
...@@ -22,7 +31,7 @@ clean: ...@@ -22,7 +31,7 @@ clean:
distclean: clean distclean: clean
make -C $(SRC_C_DIR) distclean make -C $(SRC_C_DIR) distclean
rm -f Makefile rm -rf Makefile config.* *.cache
uninstall: uninstall:
make -C $(SRC_C_DIR) uninstall make -C $(SRC_C_DIR) uninstall
......
This source diff could not be displayed because it is too large. You can view the blob instead.
export CC=@CC@
export CFLAGS=@CFLAGS@
export SONAME=@SONAME@
export SOEXT=@SOEXT@
export prefix=@prefix@
export exec_prefix=@exec_prefix@
export LIBDIR=@libdir@
export INSTALL_OPTIONS=@INSTALL_OPTIONS@
.PHONY: all install clean distclean uninstall .PHONY: all install clean distclean uninstall
all: all:
...@@ -24,7 +15,6 @@ clean: ...@@ -24,7 +15,6 @@ clean:
distclean: distclean:
make -C miniz distclean make -C miniz distclean
make -C compress distclean make -C compress distclean
rm -rf *.cache config.* Makefile
uninstall: uninstall:
make -C miniz uninstall make -C miniz uninstall
......
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment