Fixed the makefile

This commit is contained in:
hellisabove
2022-01-11 19:51:30 +02:00
parent 13a5a1d65b
commit e85e655c89
+4 -4
View File
@@ -1,11 +1,11 @@
OBJS = shell.o
SOURCE = shell.c
HEADER =
OUT = sash
CC = gcc
CC = cc
FLAGS = -g -c
LFLAGS = -lreadline
PREFIX = local
DESTDIR = /usr/
all: $(OBJS)
$(CC) -g $(OBJS) -o $(OUT) $(LFLAGS)
@@ -22,4 +22,4 @@ install: all
clean:
@echo cleaning
@rm -f sh $(OBJS)
@rm -f sash $(OBJS)