mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-17 12:08:43 +00:00
228ac9913d
- have the default makefile target update ../libc
19 lines
265 B
Makefile
19 lines
265 B
Makefile
#
|
|
# gno/lib/libc/string/Makefile
|
|
#
|
|
# Devin Reade, 1997
|
|
#
|
|
# $Id: Makefile,v 1.3 1997/09/21 06:23:07 gdr Exp $
|
|
#
|
|
|
|
.INCLUDE: ../../../paths.mk
|
|
.INCLUDE: ../../const.mk
|
|
|
|
OBJS = case.o str.o strerror.o
|
|
CFLAGS += -O78
|
|
|
|
build: ../libc
|
|
obj: $(OBJS)
|
|
|
|
.INCLUDE: ../rules.mk
|