Subversion Repositories Keine

Rev

Rev 2 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 nishi 1
# $Id: Makefile 4 2024-09-11 10:22:22Z nishi $
2
 
3
include $(PWD)/Platform/$(PLATFORM).mk
4
 
4 nishi 5
OBJS = main.o cgi.o util.o version.o man.o
2 nishi 6
 
7
.PHONY: all clean
8
.SUFFIXES: .c .o
9
 
10
all: keine.cgi
11
 
12
keine.cgi: $(OBJS)
13
	$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
14
 
15
.c.o:
16
	$(CC) $(CFLAGS) -c -o $@ $<
17
 
18
clean:
19
	rm -f *.cgi *.o