Files
nix-public-expressions/rand/Makefile

13 lines
147 B
Makefile
Raw Normal View History

2017-01-19 22:36:07 +01:00
BIN:=random
OUT?=path_if_not_defined
all: build
2017-01-19 22:36:07 +01:00
build: $(BIN)
cp -v $(BIN) $(OUT)/
install: $(BIN)
2017-01-19 22:36:07 +01:00
$(BIN): main.c
gcc main.c -Wall -lm -o $@