You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
program3-4: program3-4.c texted.c fileman.c
|
|
|
|
sed -i 's/"pdcurses\/curses.h"/<ncurses.h>/g' texted.h
|
|
|
|
sed -i 's/"pdcurses\/curses.h"/<ncurses.h>/g' fileman.h
|
|
|
|
gcc program3-4.c texted.c fileman.c -o program3-4 -lncursest
|
|
|
|
.PHONY: full pdcurses
|
|
|
|
full:
|
|
|
|
./installfull.sh
|
|
|
|
make
|
|
|
|
pdcurses:
|
|
|
|
make program3-4-pdcurses
|
|
|
|
program3-4-pdcurses: program3-4.c texted.c fileman.c
|
|
|
|
sed -i 's/<ncurses.h>/"pdcurses\/curses.h"/g' texted.h
|
|
|
|
sed -i 's/<ncurses.h>/"pdcurses\/curses.h"/g' fileman.h
|
|
|
|
gcc -Og program3-4.c texted.c fileman.c -o program3-4-pdcurses pdcurses/sdl2/pdcurses.a -L/usr/lib -lSDL2
|
|
|
|
|