mirror of
https://github.com/nealey/eris.git
synced 2025-01-20 22:05:07 -07:00
11 lines
164 B
Makefile
11 lines
164 B
Makefile
VERSION := $(shell head -n 1 CHANGES | tr -d :)
|
|
|
|
CFLAGS = -DFNORD='"eris/$(VERSION)"' -Wall -Werror
|
|
|
|
all: eris
|
|
|
|
test: eris
|
|
sh ./test.sh
|
|
|
|
clean:
|
|
rm -f *.[oa] eris
|