Provide shorter names for programs in examples/

This commit is contained in:
XANTRONIX Development 2020-07-03 19:16:53 -04:00 committed by XANTRONIX Industrial
parent 84809755a1
commit 9f13c67518
5 changed files with 2 additions and 3 deletions

View file

@ -7,8 +7,7 @@ INCLUDE_PATH = ../include
CFLAGS += -I$(INCLUDE_PATH)
LDFLAGS = -L../src -lpatty
EXAMPLES = testserver testclient-connect testclient-listen testclient-promisc \
decode
EXAMPLES = server connect listen ax25dump decode
all: $(EXAMPLES)
@ -16,4 +15,4 @@ $(EXAMPLES): %: %.c
$(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)
clean:
$(RM) -f $(EXAMPLES)
$(RM) $(EXAMPLES)