summaryrefslogtreecommitdiff
path: root/3rdparty/libconfig/Makefile.in
blob: 22642413de45d874f07b1bce3b97e26c9830ac99 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
LIBCONFIG_OBJ = libconfig.o grammar.o scanctx.o scanner.o strbuf.o
LIBCONFIG_H = libconfig.h grammar.h parsectx.h scanctx.h scanner.h strbuf.h wincompat.h

@SET_MAKE@

#####################################################################
.PHONY : all clean help

all: $(LIBCONFIG_OBJ)

clean:
	rm -rf *.o

help:
	@echo "possible targets are 'all' 'clean' 'help'"
	@echo "'all'    - builds $(LIBCONFIG_OBJ)"
	@echo "'clean'  - deletes $(LIBCONFIG_OBJ)"
	@echo "'help'   - outputs this message"

#####################################################################

%.o: %.c $(LIBCONFIG_H)
	@CC@ @CFLAGS@ @LDFLAGS@ @CPPFLAGS@ -c $(OUTPUT_OPTION) $<