Simple WebApplication written in C
Olaf Bohlen
2023-07-07 6bd455850eeeea2370114a77b0285319cb223a0d
fix makefile
1 files added
12 ■■■■■ changed files
Makefile 12 ●●●●● patch | view | raw | blame | history
Makefile
New file
@@ -0,0 +1,12 @@
CC=gcc
CFLAGS=-ansi -Wall -pedantic -lcivetweb -R/usr/local/lib -L/usr/local/lib
all:    server
server:
    ${CC} ${CFLAGS} -o server simple.c
install:
    mkdir -p /opt/app-root/bin
    cp server /opt/app-root/bin
    chmod 755 /opt/app-root/bin/server