summaryrefslogtreecommitdiff
path: root/www/pserv/files/patch-Makefile
blob: 29e0af094a5dc71916c4da9c6fbc311a86baeab7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--- sources/Makefile.orig	Fri Nov  5 23:04:15 2004
+++ sources/Makefile	Wed Nov 24 14:52:32 2004
@@ -1,11 +1,11 @@
 #Change the following to your needs
-CC = gcc
-#insert here flags, eg. optimizations
-CFLAGS = -Wall -Os -pedantic
+CC ?= gcc
 LIBS = 
 SRCS = main.c handlers.c mime.c log.c
 OBJS = main.o handlers.o mime.o log.o
 PROGRAM = pserv
+
+all : $(PROGRAM)
 
 $(PROGRAM) : $(OBJS)
 	$(CC) -o $(PROGRAM) $(OBJS) $(LIBS)