Joren's new library make system (minus Makefiles)

This commit is contained in:
Ben Gras
2006-01-16 15:44:55 +00:00
parent c461b0c63d
commit 34d445c0af
113 changed files with 1500 additions and 4225 deletions

View File

@@ -1,47 +0,0 @@
# Makefile for lib/curses.
CFLAGS = -O -D_MINIX -D_POSIX_SOURCE
LIBRARIES = libcurses
libcurses_OBJECTS = \
beep.o \
charpick.o \
curs_set.o \
cursesio.o \
endwin.o \
flash.o \
initscr.o \
longname.o \
move.o \
mvcursor.o \
newwin.o \
options.o \
overlay.o \
prntscan.o \
refresh.o \
scrreg.o \
setterm.o \
tabsize.o \
termmisc.o \
unctrl.o \
update.o \
waddch.o \
waddstr.o \
wbox.o \
wclear.o \
wclrtobot.o \
wclrtoeol.o \
wdelch.o \
wdeleteln.o \
werase.o \
wgetch.o \
wgetstr.o \
windel.o \
winmove.o \
winsch.o \
winscrol.o \
winsertln.o \
wintouch.o \
include ../Makefile.inc

47
lib/curses/Makefile.in Normal file
View File

@@ -0,0 +1,47 @@
# Makefile for lib/curses.
CFLAGS="-O -D_MINIX -D_POSIX_SOURCE"
LIBRARIES=libcurses
libcurses_FILES=" \
beep.c \
charpick.c \
curs_set.c \
cursesio.c \
endwin.c \
flash.c \
initscr.c \
longname.c \
move.c \
mvcursor.c \
newwin.c \
options.c \
overlay.c \
prntscan.c \
refresh.c \
scrreg.c \
setterm.c \
tabsize.c \
termmisc.c \
unctrl.c \
update.c \
waddch.c \
waddstr.c \
wbox.c \
wclear.c \
wclrtobot.c \
wclrtoeol.c \
wdelch.c \
wdeleteln.c \
werase.c \
wgetch.c \
wgetstr.c \
windel.c \
winmove.c \
winsch.c \
winscrol.c \
winsertln.c \
wintouch.c"
TYPE=both