Newer
Older
src / c / udpmsg / Makefile
all: udpmsg udpmsgd

udpmsg: udpmsg.c
	$(CC) $(CFLAGS) $^ -o udpmsg

udpmsgd: udpmsgd.c
	$(CC) $(CFLAGS) $^ -o udpmsgd

clean:
	rm -f udpmsg udpmsgd