diff options
author | Eric Anholt <[email protected]> | 2012-06-11 12:59:21 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2012-06-21 10:08:24 -0700 |
commit | 3a70f7526a6d0fe7478ae1ab5b451921c0ac748c (patch) | |
tree | 25ef89340ed84c8dea728bac96c8e43f2f8d5692 /src | |
parent | d59149d3f449800012d74d897e7b2fcfef80449e (diff) |
automake: Convert src/mapi/glapi/gen/Makefile to automake.
Diffstat (limited to 'src')
-rw-r--r-- | src/mapi/glapi/gen/.gitignore | 1 | ||||
-rw-r--r-- | src/mapi/glapi/gen/Makefile.am (renamed from src/mapi/glapi/gen/Makefile) | 8 |
2 files changed, 3 insertions, 6 deletions
diff --git a/src/mapi/glapi/gen/.gitignore b/src/mapi/glapi/gen/.gitignore new file mode 100644 index 00000000000..5fc607b9e2f --- /dev/null +++ b/src/mapi/glapi/gen/.gitignore @@ -0,0 +1 @@ +/Makefile diff --git a/src/mapi/glapi/gen/Makefile b/src/mapi/glapi/gen/Makefile.am index 0ac79895751..80362b8512c 100644 --- a/src/mapi/glapi/gen/Makefile +++ b/src/mapi/glapi/gen/Makefile.am @@ -5,7 +5,6 @@ TOP = ../../../.. -include $(TOP)/configs/current MESA_DIR = $(TOP)/src/mesa MESA_GLAPI_DIR = $(TOP)/src/mapi/glapi @@ -122,10 +121,7 @@ COMMON_GLX = $(COMMON) glX_API.xml glX_XML.py glX_proto_common.py ###################################################################### -default: mesa -install: mesa - -mesa: $(MESA_OUTPUTS) +all-local: $(MESA_OUTPUTS) xorg: check-xorg-source $(XORG_OUTPUTS) @@ -138,7 +134,7 @@ check-xorg-source: exit 1; \ fi -clean: +clean-local: -rm -f *~ *.pyo -rm -f $(MESA_OUTPUTS) |