Added upstream from http://ftp.icm.edu.pl/pub/loglan/
[loglan.git] / sources / int / graf / makefile
1 #     /* Loglan82 Compiler&Interpreter\r
2 #     Copyright (C) 1981-1993 Institute of Informatics, University of Warsaw\r
3 #     Copyright (C)  1993, 1994 LITA, Pau\r
4 #     \r
5 #     This program is free software; you can redistribute it and/or modify\r
6 #     it under the terms of the GNU General Public License as published by\r
7 #     the Free Software Foundation; either version 2 of the License, or\r
8 #     (at your option) any later version.\r
9 #     \r
10 #     This program is distributed in the hope that it will be useful,\r
11 #     but WITHOUT ANY WARRANTY; without even the implied warranty of\r
12 #     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
13 #     GNU General Public License for more details.\r
14 #     \r
15 # =======================================================================\r
16 \r
17 \r
18 COMMON=hlineio.o draw.o hvfill.o cirb.o gpmap.o hercules.o
19
20 CC=gcc -O -Dpascal= -DWORD_32BIT
21 CCc=$(CC) -c
22
23 #CC=cl -AL -Olsg
24 #CCc=$(CC) -Fo$*.o -c
25
26 .c.o :
27         $(CCc) $*.c
28
29 hgc386.a : $(COMMON)
30         ar rv hgc386.a $(COMMON)
31
32 \r