aboutsummaryrefslogtreecommitdiffstats
path: root/tools/ResourceExtractor/Makefile.in
blob: 709365d7f85c5fee86ab4ed5b3bec6d07249c331 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
PPC = @PPC@
PFLAGS = -dRELEASE

NAME = ResourceExtractor
SRC = $(NAME).pas
BIN = $(NAME)@EXEEXT@

.PHONY: all clean distclean

all: $(BIN)

clean:
	rm -f $(BIN) *.o *.ppu *.rst *.compiled

distclean: clean
	rm -rf Makefile *~ *.bak __history

$(BIN): $(SRC)
	$(PPC) $(PFLAGS) -o$@ $(SRC)