Advertisement
troglobit

uemacs/Makefile

Nov 11th, 2020
1,829
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 0.34 KB | None | 0 0
  1. VPATH   = src:src/tty
  2. EXEC    = uemacs
  3. OBJS    = basic.o buffer.o cinfo.o display.o echo.o extend.o file.o \
  4.       fileio.o kbd.o line.o main.o random.o region.o search.o   \
  5.       spawn.o symbol.o version.o window.o word.o
  6.  
  7. # front end: ansi
  8. OBJS    += ansi/tty.o ansi/ttykbd.o
  9.  
  10. # back end: ultrix
  11.  
  12. all:    $(EXEC)
  13.  
  14. $(EXEC): $(OBJS)
  15.     $(CC) -o $@ $^
  16.  
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement