aboutsummaryrefslogtreecommitdiffstats
path: root/src/fbuilder/Makefile.in
blob: 7a606c87224affe89d39e34d69b9f458eec86fe2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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)

clean:; rm -f *.o fbuilder *.gcov *.gcda *.gcno

distclean: clean
	rm -fr Makefile