This repository has been archived by the owner on Dec 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
makefile.linux
53 lines (44 loc) · 2.25 KB
/
makefile.linux
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# ********************************************************************* #
# Linux makefile.linux for building dis68 #
# #
# ********************************************************************* #
# #
# Copyright (c) 2017 David Breeding #
# #
# This file is part of osk-disasm. #
# #
# osk-disasm is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation, either version 3 of the License, or #
# (at your option) any later version. #
# #
# osk-disasm is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# (see the file "COPYING") along with osk-disasm. If not, #
# see <http://www.gnu.org/licenses/>. #
# #
# ********************************************************************* #
CFLAGS = -c -g -Wall
LFLAGS = -g
DISRELS = dis68.o dismain.o def68def.o opcode00.o commonsubs.o lblfuncs.o\
opcodes020.o cmdfile.o dprint.o rof.o
XTRAS = disglobs.h
PROG = dis68
$(PROG): $(DISRELS)
cc $(LFLAGS) $(DISRELS) -o $@
#$(DISRELS):
# cc $(CFLAGS) $*.c
# I broke down the dependencies for the object files
# because I couldn't get the above to work...
#dis68.o:
# cc $(CFLAGS) $*.c -I /usr/include/sys
dismain.o: dismain.c $(XTRAS)
cc $(CFLAGS) -o $@ $*.c
opcode00.o: $(XTRAS)
commonsubs.o:
clean:
rm -f *.o dis68