Introduce pet-projects dir
[lcapit-junk-code.git] / mshell / Makefile
blob068a2ccd1d89a0d69d7b3d635f3bb916bcf0cd7a
1 # Makefile for the mshell program
3 all : mshell
5 CC=gcc
6 CFLAGS= -Wall -W -Wmissing-declarations -Wmissing-prototypes -g -O0 \
7 -Wredundant-decls -Wshadow -Wbad-function-cast -Wcast-qual
8 LDFLAGS= -lreadline -lncurses
10 mshell : mshell.c
11 $(CC) -o $@ $< $(CFLAGS) $(LDFLAGS)
13 clean :
14 rm -f mshell *~