mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-18 19:09:31 +00:00
c1f439e0a7
Changed the initialization for the getopt(3) package to work with BSD-based systems (like GNO v2.0.6) as well as with GNU-based systems. Use proper capitalization for "UNIX" and "ORCA".
23 lines
524 B
Makefile
23 lines
524 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.2 1997/12/19 07:48:15 gdr Exp $
|
|
#
|
|
|
|
PROG = udl
|
|
SRCS = udlgs.c udluse.c common.c globals.c
|
|
MAIN = udlgs
|
|
|
|
# See the README for these macros.
|
|
CFLAGS += -DHAS_ATEXIT -DOVERFLOW_CHECK # -D__STACK_CHECK__
|
|
STACK = 2048
|
|
BINDIR = /usr/bin
|
|
|
|
.INCLUDE: /src/gno/prog.mk
|
|
|
|
head.o:: def.h extern.h
|