libipc-examples/c/makefile

19 lines
247 B
Makefile
Raw Normal View History

2023-02-08 19:03:00 +01:00
CC ?= cc
LDFLAGS ?= -lipc
include makefile.valgrind
all: build
BINS = pong pongd
build: $(BINS)
$(BINS):
$(CC) -o $@ $@.c $(LDFLAGS)
clean:
rm $(BINS) 2>/dev/null
# You can add your specific instructions there.
-include makefile.user