Skip to content

Latest commit

 

History

History
37 lines (32 loc) · 1 KB

Makefile

File metadata and controls

37 lines (32 loc) · 1 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
3
4
5
6
7
8
9
EXPORTS = SDL.def
HEADERS = \
../../../../include/SDL.h \
../../../../include/SDL_active.h \
../../../../include/SDL_audio.h \
../../../../include/SDL_byteorder.h \
../../../../include/SDL_cdrom.h \
../../../../include/SDL_copying.h \
Jan 4, 2004
Jan 4, 2004
10
../../../../include/SDL_cpuinfo.h \
Apr 26, 2001
Apr 26, 2001
11
12
13
14
15
16
../../../../include/SDL_endian.h \
../../../../include/SDL_error.h \
../../../../include/SDL_events.h \
../../../../include/SDL_joystick.h \
../../../../include/SDL_keyboard.h \
../../../../include/SDL_keysym.h \
Jul 10, 2003
Jul 10, 2003
17
../../../../include/SDL_loadso.h \
Apr 26, 2001
Apr 26, 2001
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
../../../../include/SDL_main.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)