Made the make variables static
[CleanReadLine.git] / Clean System Files / Makefile
1 CFLAGS:=-Wall -pedantic -std=c99
2 LDFLAGS:=-lreadline
3 OBJS:=readLine.o
4
5 all: $(OBJS)
6
7 clean:
8 $(RM) -v $(OBJS)