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