mirror of
https://github.com/caiwx86/small-packages.git
synced 2026-07-31 03:22:05 +08:00
11 lines
209 B
Makefile
11 lines
209 B
Makefile
OBJS = rtmpiapp.o mt_iapp_util.o
|
|
|
|
# If you want to debug daemon, uncomment following line
|
|
# CFLAGS += -ggdb3 -DDBG
|
|
|
|
mtkiappd: $(OBJS)
|
|
$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LDLIBS)
|
|
|
|
clean:
|
|
rm -f core *.o mtkiappd
|