Subversion Repositories tendra.SVN

Rev

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

Rev 15 Rev 22
Line 30... Line 30...
30
	$(CC) -o $(PROG) $(LDFLAGS) $(OBJS)
30
	$(CC) -o $(PROG) $(LDFLAGS) $(OBJS)
31
 
31
 
32
clean:
32
clean:
33
	rm -f $(OBJS)
33
	rm -f $(OBJS)
34
	rm -f $(PROG)
34
	rm -f $(PROG)
-
 
35
 
-
 
36
install: $(PROG)
-
 
37
	install -d $(INSTALL_BINDIR)
-
 
38
	install $(PROG) $(INSTALL_BINDIR)/$(PROG)
35
 
39
 
36
depend:
40
depend:
37
	mkdep $(CFLAGS) *.c
41
	mkdep $(CFLAGS) *.c
38
 
42
 
39
 
43