view Makefile @ 13:76cee581f48b

story: work in progress
author Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
date Wed, 04 Feb 2009 01:14:15 -0500
parents
children 06b2d0a67c4d
line wrap: on
line source

CC=gcc
CFLAGS=-Wall -g -O2

FILES=sar.c post.c xattr.c html.c

all: story

story: story.c $(FILES)
	$(CC) $(CFLAGS) -o $@ story.c $(FILES)