aboutsummaryrefslogtreecommitdiffstats
path: root/src/fbuilder/Makefile.in
blob: 6eaee284b7a6e45e6e05e907af503d69bac902b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.PHONY: all
all: fbuilder

include ../common.mk

%.o : %.c $(H_FILE_LIST) ../include/common.h ../include/syscall.h
	$(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(INCLUDE) -c $< -o $@

fbuilder: $(OBJS)
	$(CC)  $(LDFLAGS) -o $@ $(OBJS) $(LIBS) $(EXTRA_LDFLAGS)

.PHONY: clean
clean:; rm -fr *.o fbuilder *.gcov *.gcda *.gcno *.plist

.PHONY: distclean
distclean: clean
	rm -fr Makefile