This repository has been archived on 2019-04-06. You can view files and clone it, but cannot push or open issues or pull requests.
adventin/src/instead/Makefile

12 lines
314 B
Makefile
Raw Normal View History

2009-02-21 12:52:44 +02:00
#!/usr/bin/make -f
include ../../Rules.make
all: instead
instead: instead.c rline.c
2009-08-26 08:25:53 +03:00
$(CC) $(CFLAGS) -DSTEAD_PATH=\"${STEADPATH}/\" instead.c $(LUA_CFLAGS) rline.c $(LUA_LFLAGS) -lncurses -lreadline -o instead
2009-02-21 12:52:44 +02:00
clean:
rm -rf *.o instead
install:
install -d -m 0755 $(BIN)
install -m 0755 instead $(BIN)/instead