X-Git-Url: https://jasonwoof.com/gitweb/?p=vor.git;a=blobdiff_plain;f=Makefile.in;fp=Makefile.in;h=6d142d43044774aa2669840c945302e171dfbe82;hp=15dce6d1e44ad52e298b96db115ba44ad6d99f1f;hb=9d48e750948aaf7b48ef3be16cbb4516f9b57719;hpb=3dcd4d3434423d03cd108dc69500c535321575c7 diff --git a/Makefile.in b/Makefile.in index 15dce6d..6d142d4 100644 --- a/Makefile.in +++ b/Makefile.in @@ -15,22 +15,36 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -prefix = /usr/local -exec_prefix = $(prefix) +SHELL = /bin/sh +VPATH = @srcdir@ + +subdirs = @subdirs@ +top_srcdir = @top_srcdir@ +srcdir = @srcdir@ +prefix = @prefix@ +exec_prefix = @exec_prefix@ datarootdir = $(prefix)/share pkgdatadir = $(datarootdir)/vor bindir = $(exec_prefix)/bin -CFLAGS := -Wall -O3 -LDFLAGS := +CC = @CC@ +CPPFLAGS = @CPPFLAGS@ +CFLAGS = $(CPPFLAGS) @CFLAGS@ +LDFLAGS = @LDFLAGS@ +LIBS = @LIBS@ +INSTALL = @INSTALL@ + + + + paths := -DDATA_PREFIX=\"$(pkgdatadir)\" -sdl-cflags := $(shell sdl-config --cflags) -sdl-ldflags := $(shell sdl-config --libs) +SDL_CFLAGS := @SDL_CFLAGS@ +SDL_LIBS := @SDL_LIBS@ -ldflags := $(sdl-ldflags) -lSDL_image -lSDL_mixer $(LDFLAGS) -cflags := $(sdl-cflags) $(paths) $(CFLAGS) +ldflags := $(SDL_LIBS) -lSDL_image -lSDL_mixer $(LDFLAGS) +cflags := $(SDL_CFLAGS) $(paths) $(CFLAGS) my_objects := args.o dust.o file.o mt.o rocks.o score.o sprite.o sound.o autopilot.o my_objects += main.o