aboutsummaryrefslogtreecommitdiffstats
path: root/src/fbuilder/Makefile.in
blob: 2847ca2cb2d1b69788e3b340d0930569e8330f18 (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 -fr *.o fbuilder *.gcov *.gcda *.gcno *.plist

distclean: clean
	rm -fr Makefile