See last commit
This commit is contained in:
parent
8a1a9393e5
commit
1800c49211
2 changed files with 7 additions and 3 deletions
7
Makefile
7
Makefile
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
include config.mk
|
include config.mk
|
||||||
|
|
||||||
SRC = st.c x.c
|
SRC = st.c x.c rowcolumn_diacritics_helpers.c graphics.c
|
||||||
OBJ = $(SRC:.c=.o)
|
OBJ = $(SRC:.c=.o)
|
||||||
|
|
||||||
all: st
|
all: st
|
||||||
|
|
@ -15,8 +15,9 @@ config.h:
|
||||||
.c.o:
|
.c.o:
|
||||||
$(CC) $(STCFLAGS) -c $<
|
$(CC) $(STCFLAGS) -c $<
|
||||||
|
|
||||||
st.o: config.h st.h win.h
|
st.o: config.h st.h win.h graphics.h
|
||||||
x.o: arg.h config.h st.h win.h
|
x.o: arg.h config.h st.h win.h graphics.h
|
||||||
|
graphics.c: graphics.h khash.h kvec.h st.h
|
||||||
|
|
||||||
$(OBJ): config.h config.mk
|
$(OBJ): config.h config.mk
|
||||||
|
|
||||||
|
|
|
||||||
3
win.h
3
win.h
|
|
@ -39,3 +39,6 @@ void xsetpointermotion(int);
|
||||||
void xsetsel(char *);
|
void xsetsel(char *);
|
||||||
int xstartdraw(void);
|
int xstartdraw(void);
|
||||||
void xximspot(int, int);
|
void xximspot(int, int);
|
||||||
|
|
||||||
|
void xstartimagedraw(int *dirty, int rows);
|
||||||
|
void xfinishimagedraw();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue