Subversion Repositories RepoView

Rev

Rev 1 | Rev 10 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1 Rev 3
Line 1... Line 1...
1
# $Id: Makefile 1 2024-08-20 19:18:25Z nishi $
1
# $Id: Makefile 3 2024-08-20 21:05:24Z nishi $
2
 
2
 
3
include $(PWD)/Platform/$(PLATFORM).mk
3
include $(PWD)/Platform/$(PLATFORM).mk
4
 
4
 
5
.PHONY: all clean
5
.PHONY: all clean
6
.SUFFIXES: .c .o
6
.SUFFIXES: .c .o
7
 
7
 
8
OBJS = main.o sanity.o version.o util.o query.o page.o $(EXTOBJS)
8
OBJS = main.o sanity.o version.o util.o query.o page.o sha512.o $(EXTOBJS)
9
 
9
 
10
all: repoview.cgi
10
all: repoview.cgi
11
 
11
 
12
repoview.cgi: $(OBJS)
12
repoview.cgi: $(OBJS)
13
	$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS) $(EXTLIBS)
13
	$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS) $(EXTLIBS)