mirror of
https://github.com/transmission/transmission
synced 2024-12-25 09:13:06 +00:00
23 lines
578 B
Makefile
23 lines
578 B
Makefile
include ../Makefile.config
|
|
include ../Makefile.common
|
|
|
|
SRCS = conf.c dialogs.c main.c trcellrenderertorrent.c util.c
|
|
OBJS = $(SRCS:%.c=%.o)
|
|
|
|
CFLAGS += $(CFLAGS_GTK) -I../libtransmission
|
|
LDFLAGS += $(LDFLAGS_GTK)
|
|
|
|
transmission-gtk: $(OBJS)
|
|
$(CC) -o $@ $(OBJS) ../libtransmission/libtransmission.a $(LDFLAGS)
|
|
|
|
%.o: %.c ../Makefile.config ../Makefile.common Makefile
|
|
$(CC) $(CFLAGS) -o $@ -c $<
|
|
|
|
clean:
|
|
$(RM) transmission-gtk $(OBJS)
|
|
|
|
.depend: $(SRCS) Makefile
|
|
$(RM) .depend
|
|
$(foreach SRC, $(SRCS), $(CC) -MM $(SRC) $(CFLAGS) -D__TRANSMISSION__ >> .depend;)
|
|
|
|
include .depend
|