mirror of
https://github.com/vishapoberon/compiler.git
synced 2026-04-06 05:12:26 +00:00
13 lines
140 B
Makefile
13 lines
140 B
Makefile
CFLAGS = "-lnewt"
|
|
export CFLAGS
|
|
|
|
VOC = /opt/voc/bin/voc
|
|
|
|
all:
|
|
$(VOC) -s newt.Mod newttest.Mod -m
|
|
|
|
clean:
|
|
rm *.h
|
|
rm *.c
|
|
rm *.o
|
|
rm *.sym
|