aboutsummaryrefslogtreecommitdiffstats
path: root/tools/ResourceExtractor/Makefile.in
blob: 101b14e2a1894889b2e9f79497e82003b9323f06 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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

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