mirror of
https://github.com/GnoConsortium/gno.git
synced 2025-01-20 21:29:49 +00:00
20 lines
388 B
Makefile
20 lines
388 B
Makefile
#
|
|
# $Id: Makefile,v 1.2 1997/09/21 16:35:12 gdr Exp $
|
|
#
|
|
|
|
.INCLUDE: ../../../../paths.mk
|
|
.INCLUDE: ../../../const.mk
|
|
|
|
LIBC := ../../libc
|
|
LDLIBS = -l$(LIBC)
|
|
CFLAGS := -v -w -G25 $(STACK) $(DEFINES) $(INCLUDES)
|
|
|
|
PROGS = buffer fdopen1 fdopen2 fgetln fgets1 filenos float1 fopen \
|
|
fopen2 getputch offsetof perror showfds
|
|
|
|
default: $(PROGS)
|
|
|
|
.PRECIOUS: $(PROGS)
|
|
|
|
.INCLUDE: ../../rules.mk
|