aboutsummaryrefslogtreecommitdiff
path: root/astro/stars/Makefile
blob: e6799c030e3fae87669aa631804a80e19c0a4963 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# New ports collection makefile for:   stars-1.0
# Date created:		10 Jul 1996
# Whom:			searle
#
# $FreeBSD$
#

PORTNAME=	stars
PORTVERSION=	1.0
CATEGORIES=	astro
MASTER_SITES=	ftp://ftp.planetmirror.com/pub/hpux/X11/Demos/stars-1.0/ \
		http://public.www.planetmirror.com/pub/hpux/X11/Demos/stars-1.0/
DISTFILES=	stars-1.0-ss-11.00.tar.gz

MAINTAINER=	ports@FreeBSD.org
COMMENT=	Star field demo

USE_X_PREFIX=	yes

CC?=		cc
CFLAGS?=	-O2

do-build:
	$(CC) -I$(PREFIX)/include $(CFLAGS) -c $(WRKSRC)/xwin.c -o $(WRKSRC)/xwin.o
	$(CC) -I$(PREFIX)/include $(CFLAGS) -c $(WRKSRC)/main.c -o $(WRKSRC)/main.o
	$(CC) $(WRKSRC)/main.o $(WRKSRC)/xwin.o -L$(PREFIX)/lib -lX11 -lm -o $(WRKSRC)/stars

do-install:
	$(INSTALL_PROGRAM) $(WRKSRC)/stars $(PREFIX)/bin/stars

.include <bsd.port.mk>