view src/main/macosx/exports/Makefile @ 685:cc47d783f096

Date: Sun, 10 Aug 2003 13:24:45 -0400 From: Darrell Walisser Subject: Re: Updated projects? There was one additional patch I forgot to send. I needed to add a few exports to the exports file.
author Sam Lantinga <slouken@libsdl.org>
date Sun, 10 Aug 2003 17:48:56 +0000
parents 12a21d82a060
children 51b5e0be61c3
line wrap: on
line source


EXPORTS = SDL.x
HEADERS = \
	../../../../include/SDL.h \
	../../../../include/SDL_active.h \
	../../../../include/SDL_audio.h \
	../../../../include/SDL_byteorder.h \
	../../../../include/SDL_cdrom.h \
	../../../../include/SDL_copying.h \
	../../../../include/SDL_endian.h \
	../../../../include/SDL_error.h \
	../../../../include/SDL_events.h \
	../../../../include/SDL_joystick.h \
	../../../../include/SDL_keyboard.h \
	../../../../include/SDL_keysym.h \
	../../../../include/SDL_loadso.h \
	../../../../include/SDL_mouse.h \
	../../../../include/SDL_mutex.h \
	../../../../include/SDL_quit.h \
	../../../../include/SDL_rwops.h \
	../../../../include/SDL_syswm.h \
	../../../../include/SDL_thread.h \
	../../../../include/SDL_timer.h \
	../../../../include/SDL_types.h \
	../../../../include/SDL_version.h \
	../../../../include/SDL_video.h


all: $(EXPORTS)

$(EXPORTS): $(HEADERS)
	perl gendef.pl $(HEADERS) >$@ || rm $@

clean:
	rm -f $(EXPORTS)