diff options
author | Brian Paul <[email protected]> | 2004-03-26 15:19:11 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2004-03-26 15:19:11 +0000 |
commit | de0ee3187c8fffb52327f9a5680a3eafea872276 (patch) | |
tree | 69ca2969c64ddd79910f0783639d4c7bd65df792 /src/glu/Makefile | |
parent | a70ad91209b08ebe7122ace6d6656b11d9b04542 (diff) |
New Makefile system
Diffstat (limited to 'src/glu/Makefile')
-rw-r--r-- | src/glu/Makefile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/glu/Makefile b/src/glu/Makefile new file mode 100644 index 00000000000..4ddf09016ba --- /dev/null +++ b/src/glu/Makefile @@ -0,0 +1,24 @@ +# src/glu/Makefile + +TOP = ../.. + +include $(TOP)/configs/current + + +SUBDIRS = $(GLU_DIRS) + + +default: $(TOP)/configs/current + @for dir in $(SUBDIRS) ; do \ + pushd $$dir ; \ + make ; \ + popd ; \ + done + + +clean: + @for dir in $(SUBDIRS) ; do \ + pushd $$dir ; \ + make clean; \ + popd ; \ + done |