Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

debian backports and compiler warnings #29

Open
wants to merge 13 commits into
base: master
Choose a base branch
from
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/sl
/sl-h
15 changes: 13 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,20 @@
# ([email protected])
# Last Modified: 2014/03/31
#==========================================

# Hiroyuki Yamamoto <[email protected]>
# Modify for Debian 2008/12/27
CC=gcc
CFLAGS=-O
CFLAGS=-O -Wall -Wextra -pedantic

all: sl sl-h

sl: sl.c sl.h
$(CC) $(CFLAGS) -o sl sl.c -lncurses

sl-h: sl-h.c sl-h.h
$(CC) $(CFLAGS) -o sl-h sl-h.c -lncurses

clean:
rm -f sl sl-h

distclean: clean
Loading