Codebase list libmawk / d9f30b5e-7ff9-4ae9-856b-e12b904bb243/main src / example_apps / 50_runlimit / Makefile
d9f30b5e-7ff9-4ae9-856b-e12b904bb243/main

Tree @d9f30b5e-7ff9-4ae9-856b-e12b904bb243/main (Download .tar.gz)

Makefile @d9f30b5e-7ff9-4ae9-856b-e12b904bb243/mainraw · history · blame

ROOT=../..

all: app

include $(ROOT)/libmawk/Makefile.conf
include ../Makefile.common

OBJS = app.o
CFLAGS = -I$(ROOT)

app: $(OBJS) $(ROOT)/libmawk/libmawk.a
	$(CC) $(LDFLAGS) $(OBJS) $(ROOT)/libmawk/libmawk.a -o $@ $(MATHLIB)

app.o: app.c

run: app
	./app

clean:
	rm -f $(OBJS) app

distclean: clean