mirror of
https://github.com/GnoConsortium/gno.git
synced 2025-03-13 11:29:24 +00:00
25 lines
549 B
Makefile
25 lines
549 B
Makefile
#
|
|
# This file is intended for use when building udl from within
|
|
# the GNO base distribution. For building stand-alone on the
|
|
# IIgs or on another platform, use one of the other makefiles.
|
|
#
|
|
# Devin Reade, October 1997.
|
|
#
|
|
# $Id: Makefile,v 1.1 1997/12/08 16:07:19 gdr Exp $
|
|
#
|
|
|
|
PROG = udl
|
|
SRCS = udlgs.c udluse.c common.c globals.c
|
|
MAIN = udlgs
|
|
# OPTIMIZE= 0
|
|
# DEBUG =
|
|
|
|
# See the README for these macros.
|
|
CFLAGS += -DHAS_ATEXIT -DOVERFLOW_CHECK # -D__STACK_CHECK__
|
|
STACK = 4096
|
|
BINDIR = /usr/bin
|
|
|
|
.INCLUDE: /src/gno/prog.mk
|
|
|
|
head.o:: def.h extern.h
|