Skip to content

Commit

Permalink
restructure layout: ext/ -> inc/
Browse files Browse the repository at this point in the history
  • Loading branch information
Ckath committed Oct 11, 2019
1 parent 9daa81f commit a18289f
Show file tree
Hide file tree
Showing 13 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions fuf.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
#include <time.h>
#include <unistd.h>
#include <wchar.h>
#include "ext/colors.h"
#include "ext/sncurses.h"
#include "ext/sort.h"
#include "ext/sysext.h"
#include "ext/thr.h"
#include "item.h"
#include "inc/colors.h"
#include "inc/sncurses.h"
#include "inc/sort.h"
#include "inc/sysext.h"
#include "inc/thr.h"
#include "inc/item.h"

#define CLI_PROGRAMS "vi nvim nano dhex man w3m elinks links2 links lynx"

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion ext/sort.c → inc/sort.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include <ctype.h>
#include <string.h>
#include "sort.h"
#include "../item.h"
#include "item.h"

int
size_cmp(const void *a, const void *b)
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ NAME = fuf
VERSION = "$(shell git describe --tag)"
CFLAGS =
LIBS = -lncurses -lpthread
SRC = ${NAME}.c ext/colors.c ext/sort.c ext/thr.c ext/sysext.c ext/sncurses.c
SRC = ${NAME}.c inc/colors.c inc/sort.c inc/thr.c inc/sysext.c inc/sncurses.c
OBJ = ${SRC:.c=.o}
DESTDIR = /usr
CC = gcc
Expand Down

0 comments on commit a18289f

Please sign in to comment.