Subversion Repositories RepoView

Rev

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

Rev 10 Rev 24
Line 1... Line 1...
1
# $Id: Makefile 10 2024-08-21 02:13:48Z nishi $
1
# $Id: Makefile 24 2024-08-21 17:10:49Z 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
Line 11... Line 11...
11
 
11
 
12
repoview.cgi: $(OBJS)
12
repoview.cgi: $(OBJS)
13
	$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS) $(EXTLIBS)
13
	$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS) $(EXTLIBS)
14
 
14
 
15
.c.o:
15
.c.o:
16
	$(CC) -I $(PWD)/CGI $(CFLAGS) -c -o $@ $<
16
	$(CC) $(EXTCFLAGS) -I $(PWD)/CGI $(CFLAGS) -c -o $@ $<
17
 
17
 
18
clean:
18
clean:
19
	rm -f *.cgi *.o */*.o
19
	rm -f *.cgi *.o */*.o