summaryrefslogtreecommitdiff
path: root/3rdparty/libconfig/Makefile.in
blob: 12ff7572bb4681d4410b34811def07cc2c6e9863 (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@ @DEFS@ @LDFLAGS@ @CPPFLAGS@ -c $(OUTPUT_OPTION) $<