Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 161 Bytes

Makefile

File metadata and controls

12 lines (8 loc) · 161 Bytes
 
1
2
3
4
5
6
7
8
9
10
11
12
EXPORTS = SDL_sound.x
HEADERS = \
../../SDL_sound.h
all: $(EXPORTS)
$(EXPORTS): $(HEADERS)
perl gendef.pl $(HEADERS) >$@ || rm $@
clean:
rm -f $(EXPORTS)